index.php 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. <?php
  2. header("Cache-Control: no-store, no-cache, must-revalidate, max-age=0");
  3. header("Cache-Control: post-check=0, pre-check=0", false);
  4. header("Pragma: no-cache");
  5. ?>
  6. <!DOCTYPE html>
  7. <html>
  8. <head>
  9. <meta charset="utf-8">
  10. <title>Hehe rover - lot explorer</title>
  11. <link rel="stylesheet" href="bower_components/normalize-css/normalize.css" media="screen" charset="utf-8">
  12. <link href="bower_components/vis/dist/vis.min.css" rel="stylesheet" type="text/css" />
  13. <link rel="stylesheet" href="css/styles.css" media="screen" charset="utf-8">
  14. </head>
  15. <body>
  16. <div id="root">
  17. <header id="header">
  18. <h1>Lot Explorer</h1>
  19. </header>
  20. <section id="timelaps">
  21. <video id="timelapsvid" loop preload autoplay>
  22. <!-- <source class="240p" src="videos/timelaps-240p.mp4?nocache=<?php echo time(); ?>" type="video/mp4">
  23. <source class="360p" src="videos/timelaps-360p.mp4?nocache=<?php echo time(); ?>" type="video/mp4">
  24. <source class="480p" src="videos/timelaps-480p.mp4?nocache=<?php echo time(); ?>" type="video/mp4">
  25. <source class="720p" src="videos/timelaps-720p.mp4?nocache=<?php echo time(); ?>" type="video/mp4"> -->
  26. <source class="1080p" src="videos/timelaps-1080p.mp4?nocache=<?php echo time(); ?>" type="video/mp4">
  27. </video>
  28. </section>
  29. <!-- // pictures -->
  30. <section id="timeline">
  31. <!-- add viz.js here -->
  32. </section>
  33. <!-- timeline -->
  34. <section id="map">
  35. <!-- add leaflet map here -->
  36. <!-- or a striped map https://bl.ocks.org/veltman/3ad474e52925d007b292eefbe676174d -->
  37. </section>
  38. <!-- map -->
  39. </div>
  40. <!-- root -->
  41. <script src="bower_components/jquery/dist/jquery.min.js" charset="utf-8"></script>
  42. <script src="bower_components/vis/dist/vis.min.js"></script>
  43. <script src="js/dist/script.min.js" charset="utf-8"></script>
  44. </body>
  45. </html>