24 lines
630 B
PHP
24 lines
630 B
PHP
|
<?php
|
||
|
/**
|
||
|
* The template for displaying all pages.
|
||
|
**/
|
||
|
|
||
|
get_header(); ?>
|
||
|
|
||
|
<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
|
||
|
|
||
|
<?php if ( is_front_page() ) { ?>
|
||
|
<h2 class="page-title"><?php the_title(); ?></h2>
|
||
|
<?php } else { ?>
|
||
|
<h1 class="page-title"><?php the_title(); ?></h1>
|
||
|
<?php } ?>
|
||
|
|
||
|
<?php the_content(); ?>
|
||
|
<?php //wp_link_pages( array( 'before' => '' . __( 'Pages:', 'twentyten' ), 'after' => '' ) ); ?>
|
||
|
<?php edit_post_link( __( 'Edit', 'twentyten' ), '', '' ); ?>
|
||
|
|
||
|
<?php //comments_template( '', true ); ?>
|
||
|
|
||
|
<?php endwhile; ?>
|
||
|
|
||
|
<?php get_footer(); ?>
|