<?php get_header(); ?>

	<div id="content">

	<?php if (have_posts()) : ?>
		
		<?php while (have_posts()) : the_post(); ?>
				
			<div <?php post_class() ?> id="post-<?php the_ID(); ?>">

				<div class="postmetadatadate">
				<?php if(f2_option('show_author') == 'on') : ?>
				<?php _e('Posted by', 'f2'); ?> <span class="postauthor"><?php the_author_posts_link(); ?></span> <?php _e('on', 'f2'); ?>
				<?php endif; ?>
				<span class="postdate"><?php the_time(__(''j/m/y, g''f2')); ?></span>
				<?php if(is_sticky()) : ?>
				<span class="poststicky"><?php _e('Sticky post'); ?></span>
				<?php endif; ?>
				</div>

				<h2 class="posttitle"><img src="http://blog.edgeandheavy.com/images/title_marker.png "><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__('Permanent Link to %s', 'f2'), the_title_attribute('echo=0')); ?>"><?php the_title(); ?></a></h2>

			
                                <div class="postentry">
					<?php the_content(sprintf(__('Continue reading ‘%s’ »', 'f2'), the_title('', '', false))); ?>
				</div>
		
				<div class="postmetadata">
					<div class="posttagscat">
					<?php if(f2_option('show_cat') == 'on') : ?>
					<span class="postcat"><?php _e('Filed under', 'f2'); ?>&nbsp;<?php the_category(', '); ?>.</span>
					<?php endif; ?>
					<?php if( function_exists('the_tags') ) 
						the_tags('<span class="posttags">'.__('Tagged', 'f2').'&nbsp;', ', ', '</span>'); 
					?>
					</div>

					<span class="postcomment">
					<?php comments_popup_link(__('Comment', 'f2'), __('1 Comment', 'f2'), __('% Comments', 'f2')); ?>
					</span>
					<?php edit_post_link(__('Edit', 'f2'), '<span class="postedit">', '</span>'); ?>
				 </div>

			</div>

		<?php endwhile; ?>

		<div class="navigation">
			<div class="alignleft"><?php next_posts_link(__('&laquo; Older Entries', 'f2')) ?></div>
			<div class="alignright"><?php previous_posts_link(__('Newer Entries &raquo;', 'f2')) ?></div>

		</div>


	<?php else : ?>
		<div class="post">
			<class="posttitle"><?php _e('Not Found', 'f2') ?>
			<div class="postentry"><p><?php _e('Sorry, no posts matched your criteria.', 'f2'); ?></div>
		</div>
	<?php endif; ?>

	</div>



<?php get_sidebar(); ?>
<?php get_footer(); ?>