A simple php website which displays quotes on pictures of pandas.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
804 B

  1. <?php
  2. //11-24-16
  3. include('includes/header.php');
  4. //first row
  5. include 'quotes/panda.php';
  6. include('quotes/public.php');
  7. include('quotes/private.php');
  8. //4-row
  9. echo '<div class="w3-row w3-padding-32">';
  10. echo '<div class="w3-half w3-container"><div style=\'position: relative; width: 100%; height: 0px; padding-bottom: 60%;\'">';
  11. echo '<iframe src="https://www.youtube.com/embed/bxydoU2R7F4" frameborder="0" allowfullscreen style=\'position: absolute; left: 0px; top: 0px; width: 100%; height: 100%\'"></iframe>';
  12. echo '</div></div>';
  13. echo '<div class="w3-half w3-container"><div id="repo1">';
  14. echo '<script src="RepoJS/repo.js"></script>
  15. <script>
  16. $(\'#repo1\').repo({ user: \'jrtechs\', name: \'Panda-Quotes\' });
  17. </script>';
  18. echo '</div></div>';
  19. echo '</div>';
  20. include('includes/footer.php');