|
|
|
@ -35,22 +35,22 @@
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</nav>
|
|
|
|
|
</header>
|
|
|
|
|
<main>
|
|
|
|
|
{% block content %}
|
|
|
|
|
<section>
|
|
|
|
|
{% if section %}
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
{% elif page %}
|
|
|
|
|
{{ page.content | safe }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
</main>
|
|
|
|
|
<footer>
|
|
|
|
|
Build time: {{ now() | date(format="%Y-%m-%d %H:%M") }}
|
|
|
|
|
{% if config.extra.git %}
|
|
|
|
|
, <a href="{{ config.extra.git }}">Source</a>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</footer>
|
|
|
|
|
</body>
|
|
|
|
|
<main>
|
|
|
|
|
{% block content %}
|
|
|
|
|
<section>
|
|
|
|
|
{% if section %}
|
|
|
|
|
{{ section.content | safe }}
|
|
|
|
|
{% elif page %}
|
|
|
|
|
{{ page.content | safe }}
|
|
|
|
|
{% endif %}
|
|
|
|
|
</section>
|
|
|
|
|
{% endblock content %}
|
|
|
|
|
</main>
|
|
|
|
|
<footer>
|
|
|
|
|
Build time: {{ now() | date(format="%Y-%m-%d %H:%M") }}
|
|
|
|
|
{% if config.extra.git %}
|
|
|
|
|
, <a href="{{ config.extra.git }}">Source</a>
|
|
|
|
|
{% endif %}
|
|
|
|
|
</footer>
|
|
|
|
|
</html>
|
|
|
|
|