page-bio.php 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php get_header(); ?>
  2. <div class="container">
  3. <article id="content" class="single" role="main">
  4. <?php if ( have_posts() ) while ( have_posts() ) : the_post(); ?>
  5. <div id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
  6. <div id="about" class="entry-content">
  7. <div class="date">
  8. <p>&nbsp</p>
  9. </div>
  10. <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="About" rel="bookmark"><em>About</em></a></h2>
  11. <div class="row">
  12. <div class="col-md-6">
  13. <img src="<?php echo get_template_directory_uri();?>/img/david.jpg"/>
  14. <p class="dim right"><small>December, 2014</small></p>
  15. </div>
  16. <div class="col-md-6">
  17. I am 41 years old<br>
  18. I am 67 years old in spirit<br>
  19. I am 12 years old at heart<br>
  20. I am happily married to Ginny<br>
  21. I am a web developer<br>
  22. I live in Greenwood South Carolina.<br>
  23. I lived here the last 5 years.<br>
  24. I lived in Charleston, SC for 18 years<br>
  25. I lived in Columbia, SC for 18 years<br>
  26. I’ve been to every state except Texas and Alaska<br>
  27. I’ve been to Canada, U.K., Germany, and India<br>
  28. I have two dogs – Boozie &amp; Zeke<br>
  29. I have two cats – Cotton &amp; Peanut<br>
  30. I enjoy playing tennis and golf<br>
  31. I enjoy cooking and gardening<br>
  32. I enjoy listening to <a href="../../studio/music">music</a><br>
  33. I enjoy learning, solving puzzles, and games<br>
  34. I enjoy traveling and meeting people<br>
  35. I enjoy art and music<br>
  36. I enjoy life<br>
  37. </div>
  38. </div>
  39. <div class="row">
  40. <div class="col-md-12">
  41. <?php the_content(); ?>
  42. </div>
  43. </div>
  44. </div>
  45. </div>
  46. <?php endwhile; ?>
  47. </article>
  48. </div>
  49. <?php get_footer('home'); ?>