Details | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | iacchi | 1 | <?php |
2 | /* |
||
3 | * The template for displaying all pages. |
||
4 | * |
||
5 | * This is the template that displays all pages by default. |
||
6 | * Please note that this is the WordPress construct of pages |
||
7 | * and that other 'pages' on your WordPress site will use a |
||
8 | * different template. |
||
9 | */ |
||
10 | |||
11 | get_header(); ?> |
||
12 | |||
13 | <div id="content"> |
||
14 | |||
15 | <?php |
||
16 | the_post(); |
||
17 | get_template_part('content', 'page'); |
||
18 | if (comments_open()) comments_template('/comments.php', true); |
||
19 | ?> |
||
20 | |||
21 | </div><!-- #content --> |
||
22 | |||
23 | <?php get_sidebar(); ?> |
||
24 | <?php get_footer(); ?> |