<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>

	<?php the_title( '<h1 class="post-title">', '</h1>' ); ?>

	<div class="entry-meta">

		<?php if ( is_object_in_taxonomy( get_post_type(), 'category' ) && delicacy_categorized_blog() ) : ?>
			<span class="cat"><?php the_category( ', ' ); ?></span>
		<?php endif; ?>

		<span class="date"><?php the_time( get_option( 'date_format' ) ); ?></span>

		<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
			<span class="comments"><?php comments_popup_link(
				__( 'Leave a comment', 'delicacy' ),
				__( '1 Comment', 'delicacy' ),
				__( 'Comments: %', 'delicacy' )
			); ?></span>
		<?php endif; ?>


	</div>
	<div class="entry-content">
		<?php the_content(); ?>
		<div class="clear"></div>
		<?php wp_link_pages( array(
			'before' => '<div class="page-link"><span>' . __( 'Pages:', 'delicacy' ) . '</span>',
			'after' => '</div>'
		) ); ?>
		<?php the_tags( '<p>' . __( 'Tagged: ', 'delicacy' ), ', ', '</p>' ); ?>
		<?php edit_post_link( __( 'Edit', 'delicacy' ), '<p>', '</p>' ); ?>
	</div>

	<?php delicacy_content_nav( 'nav-below' ); ?>

</div>

<div class="deco-line"></div>