-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsingle.php
38 lines (23 loc) · 1.06 KB
/
single.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
<?php get_header( 'blog' ); ?>
<div id="conteudo-single">
<div id="sombra-esquerda-blog"></div><!-- #sombra-esquerda-blog -->
<div id="esquerda-single">
<div id="post-single">
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-link">' . __( 'Pages:', 'twentyten' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'twentyten' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</div><!-- #post-## -->
<?php comments_template( '', true ); ?>
<?php endwhile; ?>
<!-- Fim Loop -->
</div><!-- #post-single -->
</div><!-- #esquerda-single -->
<div id="sombra-direita-blog"></div><!-- #sombra-direita-blog -->
<?php get_sidebar( 'blog' ); ?>
</div><!-- #conteudo-single -->
<?php get_footer( 'espetaculos' ); ?>