File: /home/mmickelson/theflexguys.com/baronconstruct/wp-content/themes/spectrum/index.php
<?php
/**
* @package WordPress
* @subpackage Spectrum
*/
get_header(); ?>
<?php if ( have_posts() ) : ?>
<?php while ( have_posts() ) : the_post(); ?>
<div <?php post_class(); ?> id="post-<?php the_ID(); ?>">
<div class="main-title">
<h3><a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<div class="post-date">
<?php spectrum_date(); ?>
</div>
</div>
<div class="post-meta post-author-and-comments">
<p class="post-author"><?php printf( __( 'Written by <strong>%1$s</strong>', 'spectrum' ), get_the_author() ); ?></p>
<p class="comment-number"><?php comments_popup_link( __( 'Leave a comment', 'spectrum' ), __( '<strong>1</strong> Comment', 'spectrum' ), __( '<strong>%</strong> Comments', 'spectrum' ) ); ?></p>
</div>
<div class="entry">
<?php the_content( 'Read the rest of this entry »' ); ?>
<?php wp_link_pages( array( 'before' => '<p>Page: ', 'after' => '</p>', 'next_or_number' => 'number' ) ); ?>
</div>
<div class="post-meta post-category">
<p class="post-category-title"><strong><?php _e( 'Category:', 'spectrum' ); ?></strong></p>
<p class="post-category-elements"><?php the_category( ', ' ); ?></p>
</div>
<?php the_tags( '<div class="post-meta post-tags"><p><strong>' . __('Tagged with:', 'spectrum') . '</strong></p><ul><li>','</li><li>','</li></ul></div>' ); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<h3><?php _e( 'Not Found', 'spectrum' ); ?></h3>
<p><?php _e( "Sorry, but you are looking for something that isn't here.", "spectrum" ); ?></p>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
<div id="navigation">
<p id="prev-page"><?php next_posts_link( __( 'Older Posts', 'spectrum' ) ); ?></p>
<p id="next-page"><?php previous_posts_link( __( 'Newer Posts', 'spectrum' ) ); ?></p>
</div>
<?php get_footer(); ?>