Add ``About'' page

This commit is contained in:
Monika Eftimova 2014-10-06 05:41:21 +03:00
parent efb54e9b11
commit 393bc21d8c
1 changed files with 17 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<?php
get_header(); ?>
<section class="content grid">
<div class="col-left">
<h1><?php the_title(); ?></h1>
<?php
if ( have_posts() ) :
while ( have_posts() ) : the_post();
the_content();
endwhile;
endif;
?>
</div>
<?php get_sidebar(); ?>
</section>
<?php get_footer(); ?>