index.php 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Hehe rover - lot explorer</title>
  6. <link rel="stylesheet" href="bower_components/normalize-css/normalize.css" media="screen" charset="utf-8">
  7. <link rel="stylesheet" href="css/styles.css" media="screen" charset="utf-8">
  8. </head>
  9. <body>
  10. <div id="root">
  11. <header id="header">
  12. <h1>Lot Explorer</h1>
  13. </header>
  14. <section id="pictures">
  15. <!-- add timelapse pictures -->
  16. <!-- <img src="pictures/hehe-20160612-175853.jpg" alt="" /> -->
  17. <?php include('timelaps.inc.php') ?>
  18. </section>
  19. <section id="timeline">
  20. <!-- add viz.js here -->
  21. </section>
  22. <section id="map">
  23. <!-- add leaflet map here -->
  24. <!-- or a striped map https://bl.ocks.org/veltman/3ad474e52925d007b292eefbe676174d -->
  25. </section>
  26. </div>
  27. <script src="bower_components/jquery/dist/jquery.min.js" charset="utf-8"></script>
  28. <script src="js/script.js" charset="utf-8"></script>
  29. </body>
  30. </html>