File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/koi/index.php
<?php
/**
* @package WordPress
* @subpackage Koi
*/
get_header(); ?>
<div id="content">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?>>
<h2 class="post-title"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<p class="post-date"><span class="day"><?php the_time( 'd' ); ?></span> <span class="month"><?php the_time( 'M' ); ?></span> <span class="year"><?php the_time( 'Y' ); ?></span> <span class="postcomment"><?php comments_popup_link( __( 'Leave a Comment', 'ndesignthemes' ), __( '1 Comment', 'ndesignthemes' ), __( '% Comments', 'ndesignthemes' ) ); ?></span></p>
<p class="post-data">
<span class="postauthor"><?php printf( __( 'by %1$s', 'ndesignthemes' ), sprintf( '<a class="url fn n" href="%1$s" title="%2$s">%3$s</a>', get_author_posts_url( get_the_author_meta( 'ID' ) ), sprintf( esc_attr__( 'View all posts by %s', 'ndesignthemes' ), get_the_author() ), get_the_author() ) ); ?></span>
<span class="postcategory"><?php printf( __( 'in %1$s', 'ndesignthemes' ), get_the_category_list( ', ' ) ); ?></span>
<span class="posttag"><?php the_tags( __( 'Tags: ', 'ndesignthemes' ), ', ' ); ?></span>
<?php edit_post_link( __( '[Edit]', 'ndesignthemes' ) ); ?>
</p>
<?php the_content( __( 'More', 'ndesignthemes' ) ); ?>
</div>
<!--/post -->
<?php endwhile; ?>
<p class="post-nav"><span class="previous"><?php next_posts_link( __( '<em>Previous</em> Older Entries', 'ndesignthemes' ) ); ?></span> <span class="next"><?php previous_posts_link( __( '<em>Next</em> Newer Entries', 'ndesignthemes' ) ); ?></span></p>
<?php else : ?>
<h2><?php _e( 'Not Found', 'ndesignthemes' ); ?></h2>
<p><?php _e( 'Sorry, but you are looking for something that isn\'t here', 'ndesignthemes' );?>.</p>
<?php endif; ?>
</div>
<!--/content -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>