Advertisement
Guest User

footer.php

a guest
Nov 22nd, 2016
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. <!-- start footer.php -->
  2. <!--</div>-->
  3.  
  4. <!-- background music (autoplay, loop, no controls) -->
  5. <audio id="background-music" src="<?php echo get_stylesheet_directory_uri(); ?>/assets/sounds/BackgroundMusic.mp3" autoplay loop>
  6. Your browser does not support the <code>audio</code> element.
  7. </audio>
  8.  
  9. <!-- jQuery -->
  10.  
  11. <script src="https://code.jquery.com/jquery-3.1.0.min.js" integrity="sha256-cCueBR6CsyA4/9szpPfrX3s49M9vUU5BgtiJj06wt/s=" crossorigin="anonymous"></script>
  12.  
  13.  
  14. <!-- jQuery box shadow animation plugin -->
  15.  
  16. <script src="<?php echo get_stylesheet_directory_uri(); ?>/js/jquery.animate-shadow-min.js"></script>
  17.  
  18.  
  19. <!-- scritps.js -->
  20.  
  21. <script src="<?php echo get_stylesheet_directory_uri(); ?>/js/scripts.js"></script>
  22.  
  23. <!-- Nav Menu -->
  24. <!--<nav id="site-navigation"
  25. class="main-navigation"
  26. role="navigation">
  27.  
  28. <button class="menu-toggle">Menu</button>
  29. -->
  30.  
  31.  
  32. <div class="mobile-nav">
  33. <div class="menu-btn" id="menu-btn">
  34. <div></div>
  35. <span></span>
  36. <span></span>
  37. <span></span>
  38. </div>
  39.  
  40. <div class="responsive-menu">
  41. <?php
  42. if ( ! is_front_page() && ! is_home() ) {
  43. wp_nav_menu();
  44. }
  45. ?>
  46. </div>
  47. </div>
  48.  
  49. <!--</nav>-->
  50.  
  51. <?php wp_footer(); ?>
  52. </div>
  53. </body>
  54. </html>
  55. <!-- end footer.php -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement