<?php get_header(); ?>

	<div class="container">
		<article id="content" class="single" role="main">
			<?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
			<div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
				<div id="about" class="entry-content">
					<div class="date">
						<time datetime="<?php the_time('c');?>" itemprop="datePublished"><?php the_time('n/j/Y'); ?></time>
					</div>
					<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="Bio" rel="bookmark"><em>Bio</em></a></h2>
					<div class="row">
						<div class="col-md-12">
							<?php the_content(); ?>
						</div>
					</div>
				</div>
			</div>
			<?php endwhile; ?>
		</article>
	</div>
<?php get_footer('home'); ?>