tiskifer-theme/templates/base.html
2022-10-31 08:18:16 +00:00

19 lines
No EOL
398 B
HTML

{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html lang = "en">
{% include "partials/header.html" %}
<body>
{% include "partials/nav.html" %}
<div class="content">
{# Post page is the default #}
{% block main_content %}
Nothing here?!
{% endblock main_content %}
</div>
{% include "partials/footer.html" %}
</body>
</html>