base_template.html 813 B

1234567891011121314151617181920
  1. <html>
  2. <head>
  3. <title>{% block title %}My Bike Ride{% endblock %}</title>
  4. <link rel="stylesheet" type="text/css" href="/static/style.css">
  5. {% block head %}
  6. {% endblock %}
  7. <link rel="shortcut icon" href="https://img.icons8.com/ios/50/000000/bicycle.png">
  8. <!-- Potted Plant icon by Icons8 -->
  9. </head>
  10. <body>
  11. <div id="stops" class="leftnav"><a href="/stops">See the Stops.</a></div>
  12. <div id="map" class="leftnav"><a href="/map">See the Map.</a></div>
  13. <div id="faq" class="leftnav"><a href="/faq">See the FAQ.</a></div>
  14. <div id="hls" class="leftnav"><a href="/highlights">Highlights.</a></div>
  15. <div id="gloss" class="leftnav"><a href="/glossary">Glossary.</a></div>
  16. <div id="rand" class="leftnav"><a href="/random">Random Stop.</a></div>
  17. {% block body %}
  18. {% endblock %}
  19. </body>
  20. </html>