blog/templates/base.html

20 lines
413 B
HTML
Raw Normal View History

2022-11-12 01:07:47 +00:00
{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html>
{% include "partials/header.html" %}
<body>
<div class="content">
{% include "partials/nav.html" %}
{# Post page is the default #}
{% block main_content %}
Nothing here?!
{% endblock main_content %}
</div>
2022-11-12 06:33:21 +00:00
<a href="https://socialnotwork.net/@nebkor" rel="me">.</a>
2022-11-12 01:07:47 +00:00
</body>
2022-11-12 06:33:21 +00:00
</html>