page.php 1.3 KB

1234567891011121314151617181920212223242526272829303132
  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. <script src="<?php echo get_template_directory_uri(); ?>/js/jquery-1.8.3.min.js"></script>
  19. <script src="<?php echo get_template_directory_uri(); ?>/js/script.js"></script>
  20. <script src="<?php echo get_template_directory_uri(); ?>/js/skrollr.min.js"></script>
  21. <script src="<?php echo get_template_directory_uri(); ?>/js/skrollr.menu.min.js"></script>
  22. <script src="<?php echo get_template_directory_uri(); ?>/js/init.js"></script>
  23. <script>
  24. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  25. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  26. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  27. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  28. ga('create', 'UA-1906067-35', 'cantbuymelove.org');
  29. ga('send', 'pageview');
  30. </script>
  31. </body>
  32. </html>