layout-old.html 856 B

1234567891011121314151617181920212223242526272829
  1. <!doctype html>
  2. <meta charset="utf-8">
  3. <link rel="stylesheet" href="{{ '/static/style.css'|url }}">
  4. <title>{% block title %}Welcome{% endblock %} — exegetes.eu.org</title>
  5. <body>
  6. <header>
  7. <h1>exegetes.eu.org</h1>
  8. <nav>
  9. <ul class="nav navbar-nav">
  10. <li{% if this._path == '/' %} class="active"{% endif
  11. %}><a href="{{ '/'|url }}">Welcome</a></li>
  12. {% for href, title in [
  13. ['/blog', 'Blog'],
  14. ['/projects', 'Projects'],
  15. ['/about', 'About']
  16. ] %}
  17. <li{% if this.is_child_of(href) %} class="active"{% endif
  18. %}><a href="{{ href|url }}">{{ title }}</a></li>
  19. {% endfor %}
  20. </ul>
  21. </nav>
  22. </header>
  23. <div class="page">
  24. {% block body %}{% endblock %}
  25. </div>
  26. <footer>
  27. &copy; Copyright 2016 by Les Exégètes Amateurs.
  28. </footer>
  29. </body>