<div <?php post_class('blogPost column'); if(($wp_query->current_post + 1) == ($wp_query->post_count)) { echo ' id="lastPost"'; } if ($wp_query->current_post == 0) { echo ' style="margin-top: 0;"'; } ?>>
	<h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
	<p class="postHeader">Posted by <a href="<?php the_permalink(); ?>"><?php the_author(); ?></a> in <a href="<?php $category = get_the_category(); echo get_category_link($category[0]->cat_ID); ?>"><?php echo $category[0]->cat_name; ?></a> <?php if(get_the_time('Ymd') == date('Ymd')){ _e('at', 'serifly'); } else { _e('on', 'serifly'); } ?> <a href="<?php echo get_month_link(get_the_time('Y'), get_the_time('m')); ?>"><?php if(get_the_time('Ymd') == date('Ymd')){ echo the_time(get_option('time_format')); } else { echo the_time(get_option('date_format')); } ?></a> <?php _e('with', 'serifly'); echo ' '; comments_popup_link(__('No Comments', 'serifly'), __('1 Comment', 'serifly'), __('% Comments', 'serifly')); ?></p>
	<?php if (is_single()): ?>
	<?php the_content(); wp_link_pages(); the_tags(); ?>
	<div class="separatorShadow">
	</div>
	<?php comments_template('', true); ?>
	<!-- Spacing to bottom -->
	<div class="separator">
	</div>
	<?php else: ?>
	<?php the_content(__('<span>Read more...</span>', 'serifly')); ?>
	<p class="postFooter"></p>
	<?php endif; ?>
</div>