-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle-projetos.php
69 lines (39 loc) · 1.39 KB
/
single-projetos.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
/**
* The Template for displaying all single posts.
*
* @package artunlimited
*/
get_header( 'interno' ); ?>
<div class="altura-header"></div>
<div id="content-index" class="site-content" role="main">
<div id="primary" class="content">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<!-- <div class="full-thumb">
<?php // the_post_thumbnail (); ?>
</div> -->
<header class="entry-header-noticias">
<h1 class="titulo-noticias"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<div class="entry-meta">
<?php the_time( get_option( 'date_format' ) ); ?>
</div><!-- .entry-meta -->
</header><!-- .entry-header -->
<div class="clear"></div>
<div class="entry-content">
<?php the_content(); ?>
</div><!-- .entry-content -->
<footer class="entry-meta">
<?php edit_post_link( __( 'Edit', 'artunlimited' ), '<span class="edit-link">', '</span>' ); ?>
</footer><!-- .entry-meta -->
</article><!-- #post-## -->
<?php
// If comments are open or we have at least one comment, load up the comment template
if ( comments_open() || '0' != get_comments_number() )
comments_template();
?>
<?php endwhile; // end of the loop. ?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
</div><!-- #content -->
<?php get_footer('noticias'); ?>