index.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  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 href="bower_components/leaflet/dist/leaflet.css" rel="stylesheet" type="text/css" />
  14. <link rel="stylesheet" href="css/styles.css" media="screen" charset="utf-8">
  15. </head>
  16. <body>
  17. <div id="root">
  18. <header id="header">
  19. <h1>hehe, Exo Planete</h1>
  20. </header>
  21. <section id="timelaps">
  22. <video id="timelapsvid" loop preload >
  23. <!-- <source class="240p" src="videos/timelaps-240p.mp4?nocache=<?php echo time(); ?>" type="video/mp4"> -->
  24. <!-- <source class="360p" src="videos/timelaps-360p.mp4?nocache=<?php echo time(); ?>" type="video/mp4"> -->
  25. <!-- <source class="480p" src="videos/timelaps-480p.mp4?nocache=<?php echo time(); ?>" type="video/mp4"> -->
  26. <!-- <source class="720p" src="videos/timelaps-720p.mp4?nocache=<?php echo time(); ?>" type="video/mp4"> -->
  27. <source class="1080p" src="videos/timelaps-1080p.mp4?nocache=<?php echo time(); ?>" type="video/mp4">
  28. </video>
  29. </section>
  30. <!-- // pictures -->
  31. <section id="timeline">
  32. <!-- add viz.js here -->
  33. </section>
  34. <!-- timeline -->
  35. <section id="mapout">
  36. <!-- add leaflet map here -->
  37. <!-- or a striped map https://bl.ocks.org/veltman/3ad474e52925d007b292eefbe676174d -->
  38. </section>
  39. <!-- map -->
  40. <section id="mapin">
  41. <!-- add leaflet map here -->
  42. <!-- or a striped map https://bl.ocks.org/veltman/3ad474e52925d007b292eefbe676174d -->
  43. </section>
  44. <!-- map -->
  45. <section id="teaser">
  46. <div class="layer"></div>
  47. <div class="popup">
  48. <h1>Centipede</h1>
  49. </div>
  50. </section>
  51. </div>
  52. <!-- root -->
  53. <script src="bower_components/jquery/dist/jquery.min.js" charset="utf-8"></script>
  54. <script src="bower_components/vis/dist/vis.min.js"></script>
  55. <script src="bower_components/leaflet/dist/leaflet.js"></script>
  56. <script src="bower_components/leaflet-providers/leaflet-providers.js"></script>
  57. <script src="js/dist/script.min.js" charset="utf-8"></script>
  58. </body>
  59. </html>