Rev 3 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
3 | iacchi | 1 | <?php |
2 | /* |
||
3 | * The template used for displaying page content in page.php and right-page.php |
||
4 | */ |
||
5 | ?> |
||
6 | <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> |
||
7 | <?php |
||
27 | iacchi | 8 | if (get_the_title() != get_the_title(zendark_get_root_parent(get_the_ID()))) { ?> |
3 | iacchi | 9 | <header class="entry-header"> |
10 | <h1 id="page-title"><?php the_title(); ?></h1> |
||
11 | </header> |
||
12 | <?php } ?> |
||
13 | <div class="entry-content"> |
||
14 | <?php the_content(); ?> |
||
27 | iacchi | 15 | <?php wp_link_pages(array( 'before' => '<div class="page-link">'.__('Pages:', 'zendark'), 'after' => '</div>')); ?> |
16 | <?php edit_post_link(__('Edit', 'zendark'), '<span class="entry-meta-top">', '</span>'); ?> |
||
3 | iacchi | 17 | <div style="clear:both"></div> |
18 | </div><!-- .entry-content --> |
||
19 | </article> |