<?php
/**
 * The template used for displaying page content in page.php
 *
 * @package Delicacy
 */
?>

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

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

	<div class="entry-meta">
		<?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(); ?>
		<?php wp_link_pages( array(
			'before' => __( 'Pages: ', 'delicacy' ),
			'next_or_number' => 'number'
		) ); ?>
		<?php edit_post_link( __( 'Edit', 'delicacy' ), '<p>', '</p>' ); ?>
	</div>
</div>

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