| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | 
							- <?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">
 
- 						<p> </p>
 
- 					</div>
 
- 					<h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="About" rel="bookmark"><em>Bio</em></a></h2>
 
- 					<div class="row">
 
- 						<div class="col-md-6">
 
- 							<img src="<?php echo get_template_directory_uri();?>/img/david.jpg"/>
 
- 							<p class="dim right"><small>December, 2014</small></p>		
 
- 						</div>
 
- 						<div class="col-md-6">
 
- 							I am 41 years old<br>
 
- 							I am 67 years old in spirit<br>
 
- 							I am 12 years old at heart<br>
 
- 							I am happily married to Ginny<br>
 
- 							I am a web developer<br>
 
- 							I live in Greenwood South Carolina.<br>
 
- 							I lived here the last 5 years.<br>
 
- 							I lived in Charleston, SC for 18 years<br>
 
- 							I lived in Columbia, SC for 18 years<br>
 
- 							I’ve been to every state except Texas and Alaska<br>
 
- 							I’ve been to Canada, U.K., Germany, and India<br>
 
- 							I have two dogs – Boozie & Zeke<br>
 
- 							I have two cats – Cotton & Peanut<br>
 
- 							I enjoy playing tennis and golf<br>
 
- 							I enjoy cooking and gardening<br>
 
- 							I enjoy listening to <a href="../../studio/music">music</a><br>
 
- 							I enjoy learning, solving puzzles, and games<br>
 
- 							I enjoy traveling and meeting people<br>
 
- 							I enjoy art and music<br>
 
- 							I enjoy life<br>
 
- 						</div>
 
- 					</div>	
 
- 					<div class="row">
 
- 						<div class="col-md-12">
 
- 							<?php the_content(); ?>
 
- 						</div>
 
- 					</div>
 
- 				</div>
 
- 			</div>
 
- 			<?php endwhile; ?>
 
- 		</article>
 
- 	</div>
 
- <?php get_footer('home'); ?>
 
 
  |