tiskifer-theme/templates/base.html
Syed Zayyan Masud 3c3caedd3c first commit
2022-10-29 09:39:10 +01:00

19 lines
No EOL
386 B
HTML

{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html>
{% 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>