base.html 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <!doctype html>
  2. <html lang="en" data-theme="light">
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1" />
  6. <title>Jessica Tenbusch - Visual Artist</title>
  7. <link
  8. rel="icon"
  9. type="image/x-icon"
  10. href="{{ get_url(path='favicon.png') }}"
  11. />
  12. <link rel="stylesheet" href="{{ get_url(path='style.css') }}" />
  13. <link rel="canonical" href="https://www.jessicatenbusch.com" />
  14. <meta
  15. name="description"
  16. content="Jessica Tenbusch is an artist creating work exploring the relationships between plants, animals, and humans."
  17. />
  18. </head>
  19. <body>
  20. <section class="section">
  21. <div class="columns">
  22. <div class="column is-one-fifth">
  23. <!-- -->
  24. {% include "nav.html" %}
  25. <!-- -->
  26. <footer class="meta">
  27. {% block nav_content %} {% endblock %}
  28. </footer>
  29. </div>
  30. <div class="column container left">
  31. <div class="">
  32. {% block content %}
  33. <!-- -->
  34. {% endblock %}
  35. </div>
  36. </div>
  37. </div>
  38. </section>
  39. </body>
  40. </html>