page-test.php 1.0 KB

123456789101112131415161718192021222324252627
  1. <?php /* Template Name: Test */ ?>
  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 if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
  14. </div>
  15. <?php wp_footer(); ?>
  16. <script src="<?php echo get_template_directory_uri(); ?>/js/skrollr.min.js"></script>
  17. <script src="<?php echo get_template_directory_uri(); ?>/js/skrollr.menu.min.js"></script>
  18. <script>
  19. (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
  20. (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
  21. m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
  22. })(window,document,'script','//www.google-analytics.com/analytics.js','ga');
  23. ga('create', 'UA-1906067-35', 'cantbuymelove.org');
  24. ga('send', 'pageview');
  25. </script>
  26. </body>
  27. </html>