kumitheme/page.php

45 lines
911 B
PHP
Raw Normal View History

2018-09-01 10:24:57 +00:00
<?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();
?>