<?php get_header(); ?>
<div id="inner">
<div id="content-sidebar-wrap">
<div id="content" class="hfeed">
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<h2><a href="<?php the_permalink() ?>">
<?php the_title(); ?>
</a></h2>
<div class="entry-content">
<?php the_content(); ?>
</div>
<p>
<?php the_time('F j, Y'); ?>
at
<?php the_time('g:i a'); ?>
|
<?php comments_number('No comment', '1 comment', '% comments'); ?>
</p>
<?php endwhile; else: ?>
<h2>Woops...</h2>
<p>Sorry, no posts we're found.</p>
<?php endif; ?>
<?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?>
</div>
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>