blog/templates/base.html

20 lines
412 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>
2023-01-08 07:53:20 +00:00
<a rel="me" href="https://socialnotwork.net/@nebkor"></a>
2022-11-12 01:07:47 +00:00
</body>
2022-11-12 06:33:21 +00:00
</html>