initial commit

This commit is contained in:
Jacob Haddon
2020-03-15 10:26:50 -04:00
commit d6a0ff4db1
36 changed files with 3037 additions and 0 deletions

24
page.php Normal file
View File

@ -0,0 +1,24 @@
<?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(); ?>