Melville/page.php

24 lines
630 B
PHP
Raw Permalink Normal View History

2020-03-15 10:26:50 -04:00
<?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(); ?>