1234567891011121314151617181920212223242526272829 |
- <!doctype html>
- <meta charset="utf-8">
- <link rel="stylesheet" href="{{ '/static/style.css'|url }}">
- <title>{% block title %}Welcome{% endblock %} — exegetes.eu.org</title>
- <body>
- <header>
- <h1>exegetes.eu.org</h1>
- <nav>
- <ul class="nav navbar-nav">
- <li{% if this._path == '/' %} class="active"{% endif
- %}><a href="{{ '/'|url }}">Welcome</a></li>
- {% for href, title in [
- ['/blog', 'Blog'],
- ['/projects', 'Projects'],
- ['/about', 'About']
- ] %}
- <li{% if this.is_child_of(href) %} class="active"{% endif
- %}><a href="{{ href|url }}">{{ title }}</a></li>
- {% endfor %}
- </ul>
- </nav>
- </header>
- <div class="page">
- {% block body %}{% endblock %}
- </div>
- <footer>
- © Copyright 2016 by Les Exégètes Amateurs.
- </footer>
- </body>
|