single.php 445 B

12345678910111213141516171819
  1. <?php?>
  2. <!DOCTYPE html>
  3. <html lang="en-US">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
  7. <meta name="description" content="David + Ginny">
  8. <title>D+G (Can't Buy Me Love)</title>
  9. <?php wp_head(); ?>
  10. </head>
  11. <body>
  12. <div class="container">
  13. <?php while ( have_posts() ) : the_post(); ?>
  14. <?php the_content(); ?>
  15. <?php endwhile;?>
  16. </div>
  17. <?php wp_footer(); ?>
  18. </body>
  19. </html>