kumitheme/page.php
2018-09-01 12:24:57 +02:00

45 lines
911 B
PHP

<?php
get_header();
?>
<!-- container -->
<div id="container">
<!-- content -->
<div id="content">
<?php if(have_posts()) : ?>
<?php while(have_posts()) : the_post() ?>
<div class="daydate"></div>
<div class="story">
<!-- Story Content -->
<div class="storyContent">
<?php the_content(); ?>
</div>
</div>
<?php endwhile; ?>
<?php else : ?>
<h2>Page not found!</h2>
<div><?php get_search_form(); ?></div>
<?php endif; ?>
</div><!-- end of content -->
</div><!-- end of container -->
<?php
get_sidebar();
get_footer();
?>