File: /home/mmickelson/martyknows.com/wp-content/themes/grid-focus/page.php
<?php
/**
* @package WordPress
* @subpackage Grid_Focus
*/
get_header();
?>
<div id="filler" class="fix">
<div id="mainColumn" class="fix"><a name="main"></a>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="postMeta">
<p class="container">
<span class="date"> <?php edit_post_link( __( ' (Edit)', 'grid-focus' ), '', '' ); ?></span>
</p>
</div>
<h2><a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>"><?php the_title() ?></a></h2>
<div class="entry">
<p><?php the_content(); ?></p>
<p><?php wp_link_pages(); ?></p>
</div>
</div>
<div id="commentsContainer">
<?php comments_template(); ?>
</div>
<?php endwhile; else: ?>
<?php endif; ?>
</div>
<?php include (TEMPLATEPATH . '/second.column.post.php'); ?>
<?php include (TEMPLATEPATH . '/third.column.shared.php'); ?>
</div>
<?php get_footer(); ?>