You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
565 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" %}
{% if config.extra.goatcounterName %}
<script data-goatcounter="https://{{ config.extra.goatcounterName }}.goatcounter.com/count" async
src="//gc.zgo.at/count.js"></script>
{% endif %}
</body>
</html>