Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | iacchi | 1 | <?php |
2 | /* |
||
3 | * The Template for displaying all single posts. |
||
4 | */ |
||
5 | |||
6 | get_header(); ?> |
||
7 | |||
8 | <div id="content"> |
||
9 | |||
10 | <?php |
||
11 | while (have_posts()) : the_post(); |
||
12 | get_template_part('content', 'single'); |
||
13 | comments_template('', true); |
||
14 | endwhile; // end of the loop. |
||
15 | ?> |
||
16 | |||
17 | </div><!-- #content --> |
||
18 | |||
19 | <?php get_sidebar(); ?> |
||
20 | <?php get_footer(); ?> |