tiskifer-theme/templates/base.html

25 lines
565 B
HTML
Raw Permalink Normal View History

2022-10-29 10:39:10 +02:00
{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
2023-05-24 16:40:44 +02:00
<html lang="en">
2022-10-29 10:39:10 +02:00
{% include "partials/header.html" %}
<body>
2023-05-24 16:40:44 +02:00
{% 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" %}
{% if config.extra.goatcounterName %}
<script data-goatcounter="https://{{ config.extra.goatcounterName }}.goatcounter.com/count" async
src="//gc.zgo.at/count.js"></script>
{% endif %}
2022-10-29 10:39:10 +02:00
</body>
</html>