<?php get_header(); ?>
<div id="content" class="wrap group">
	<div id="content_main">
	<?php if (have_posts()) : ?>
		<?php while (have_posts()) : the_post(); ?>
		<div  <?php post_class('article'); ?> id="post-<?php the_ID(); ?>">
			<h1 class="post_title"><?php the_title(); ?></h1>
			<div class="post_meta"><?php if( comments_open() ): ?><span class="comments"><?php comments_popup_link(__('Add a Comment','greenhope'), __('1 Comment','greenhope'), __('% Comments','greenhope')); ?></span><?php endif; ?>[<?php _e('Author: ', 'greenhope'); ?><?php the_author_posts_link() ?> <?php edit_post_link(__('Edit','greenhope'), '(', ')'); ?>]</div>
			<div class="entry group">
				<?php the_content(__('More &raquo;','greenhope')); ?>
			</div>
			<div class="respond"><?php comments_template(); ?></div>
		</div>
		<?php endwhile; else : ?>
		<div class="article error group">
			<h2 class="posttitle"><?php _e('Not Found', 'greenhope'); ?></h2>
			<div class="entry group">
				<p class="center"><?php _e('Sorry, but you are looking for something that isn\'t here.', 'greenhope'); ?></p>
			</div>
		</div>
	<?php endif; ?>
	</div>
	<?php get_sidebar(); ?>
</div>
<?php get_footer(); ?>