page-bio.php 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  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 married to Ginny<br>
  19. I live in Greenwood South Carolina.<br>
  20. I lived in Charleston, SC for 18 years<br>
  21. I lived in Columbia, SC for 18 years<br>
  22. I’ve been to every state except Texas and Alaska<br>
  23. I’ve been to Canada, U.K., Germany, and India<br>
  24. I have two dogs – Boozie &amp; Zeke<br>
  25. I have two cats – Cotton &amp; Peanut<br>
  26. I enjoy playing tennis and golf<br>
  27. I enjoy cooking and gardening<br>
  28. I enjoy learning, solving puzzles, and games<br>
  29. I enjoy traveling and meeting people<br>
  30. I enjoy art and music<br>
  31. I enjoy life<br>
  32. </div>
  33. </div>
  34. <div class="row">
  35. <div class="col-md-12">
  36. <?php the_content(); ?>
  37. </div>
  38. </div>
  39. </div>
  40. </div>
  41. <?php endwhile; ?>
  42. </article>
  43. </div>
  44. <?php get_footer('home'); ?>