Fix crossing body tag

master
Emil Miler 11 months ago
parent ce6dc10cf7
commit baae73dc43

@ -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>

Loading…
Cancel
Save