File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/neutra/index.php
<?php
/**
* @package WordPress
* @subpackage Neutra
*/
get_header(); ?>
<div id="page">
<div id="left">
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="title"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<div class="postcontent">
<?php the_content( 'Read more…' ); ?>
<?php wp_link_pages( 'before=<p class="link-pages">Pages: &after=</p>' ); ?>
<div class="postmetadata">
<div class="floatleft">
<p><span class="category"><?php the_category( ', ' ); ?></span></p>
<p><?php the_tags( '<span class="tags">', ', ', '</span>' ); ?></p>
</div><!-- /floatleft -->
<div class="floatright">
<p><span class="date"><?php the_time( get_option( 'date_format' ) ); ?></span></p>
<p><span class="comments"><?php comments_popup_link( __( 'Leave a comment' ), __( '1 Comment' ), __( '% Comments' ) ) ?></span></p>
</div><!-- /floatright -->
</div><!-- /postmetadata -->
</div><!-- /postcontent -->
</div><!-- /post -->
<?php endwhile; ?>
<div class="navigation">
<div class="old-posts alignleft"><?php next_posts_link( '« Older posts' ); ?></div>
<div class="new-posts alignright"><?php previous_posts_link( 'Newer posts »' ); ?></div>
</div><!-- /navigation -->
<?php else : ?>
<div class="post">
<div class="postcontent">
<h2>I couldn't find what you're looking for!</h2>
<p>Don't worry, you can always search the <strong>archives</strong> or browse the <strong>categories</strong>.</p>
</div>
</div><!-- /post -->
<?php endif; ?>
</div><!-- /left -->
<div id="right">
<?php get_sidebar(); ?>
</div><!-- /right -->
</div><!-- /page -->
<?php get_footer(); ?>