2020-03-07 11:54:26 -06:00
|
|
|
<!doctype html>
|
2020-03-07 19:43:24 -06:00
|
|
|
<title>{{ title }}{% if title %} - {% endif %}{{ config.TITLE_SUFFIX }}</title>
|
2020-03-07 17:26:32 -06:00
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/style.css') }}">
|
2020-03-07 17:40:24 -06:00
|
|
|
<link rel="icon" href="{{ url_for('static', filename='img/favicon.png') }}">
|
2020-03-15 20:23:14 -05:00
|
|
|
<section class="nav">
|
|
|
|
{% for nav in navs %}
|
|
|
|
<a href="{{ nav.1 }}">{{ nav.0 }}</a>
|
|
|
|
{% if not loop.last %} » {% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</section>
|
2020-03-07 11:54:26 -06:00
|
|
|
<section class="content">
|
|
|
|
{{ content }}
|
|
|
|
</section>
|
2020-03-07 15:39:12 -06:00
|
|
|
<footer>
|
|
|
|
<i>Last modified: {{ mtime }}</i>
|
|
|
|
</footer>
|