File: /home/mmickelson/theflexguy.com/wp-content/themes/hybrid/page-blog.php
<?php
/**
 * Template Name: Blog
 *
 * If you want to set up an alternate blog page, just use this template for your page.
 * This template shows your latest posts.
 *
 * @package Hybrid
 * @subpackage Template
 * @link http://themehybrid.com/themes/hybrid/page-templates/blog
 * @deprecated 0.9.0 Users should no longer be using this template. 'home.php' is used to show posts.
 */
get_header(); // Loads the header.php template. ?>
	<div id="content" class="hfeed content">
		<?php do_atomic( 'before_content' ); // hybrid_before_content ?>
		<?php
			$wp_query = new WP_Query();
			$wp_query->query( array( 'posts_per_page' => get_option( 'posts_per_page' ), 'paged' => $paged ) );
			$more = 0;
		?>
		<?php if ( $wp_query->have_posts() ) : while ( $wp_query->have_posts() ) : $wp_query->the_post(); ?>
			<div id="post-<?php the_ID(); ?>" class="<?php hybrid_entry_class(); ?>">
				<?php do_atomic( 'before_entry' ); // hybrid_before_entry ?>
				<div class="entry-content">
					<?php the_content( sprintf( __( 'Continue reading %1$s', 'hybrid' ), the_title( ' "', '"', false ) ) ); ?>
					<?php wp_link_pages( array( 'before' => '<p class="page-links pages">' . __( 'Pages:', 'hybrid' ), 'after' => '</p>' ) ); ?>
				</div><!-- .entry-content -->
				<?php do_atomic( 'after_entry' ); // hybrid_after_entry ?>
			</div><!-- .hentry -->
			<?php endwhile; ?>
			<?php do_atomic( 'after_singular' ); // hybrid_after_singular ?>
		<?php else: ?>
			<?php get_template_part( 'loop-error' ); // Loads the loop-error.php template. ?>
		<?php endif; ?>
		<?php do_atomic( 'after_content' ); // hybrid_after_content ?>
	</div><!-- .content .hfeed -->
<?php get_footer(); // Loads the footer.php template. ?>