mat.services/templates/base.html

26 lines
487 B
HTML
Raw Normal View History

2022-08-08 04:31:56 +00:00
{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
2022-08-09 04:37:39 +00:00
<html lang="en">
2022-08-08 04:31:56 +00:00
{% include "partials/header.html" %}
<body>
<div class="content">
{% include "partials/nav.html" %}
{# Post page is the default #}
2022-08-14 17:05:50 +00:00
<main class="inner">
2022-08-08 04:31:56 +00:00
{% block main_content %}
Nothing here?!
{% endblock main_content %}
2022-08-14 17:05:50 +00:00
</main>
{% block trailing_content %}
{% endblock trailing_content %}
2022-08-08 04:31:56 +00:00
{% include "partials/footer.html" %}
</div>
</body>
</html>