mat.services/templates/base.html

22 lines
492 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">
2022-10-21 06:26:16 +00:00
{% include "partials/nav.html" -%}
{#- Post page is the default #}
2022-08-14 17:05:50 +00:00
<main class="inner">
2022-10-21 06:26:16 +00:00
{%- block main_content -%}
2022-08-08 04:31:56 +00:00
Nothing here?!
2022-10-21 06:26:16 +00:00
{%- endblock main_content -%}
2022-08-14 17:05:50 +00:00
</main>
2022-10-21 06:26:16 +00:00
{% block trailing_content -%}
{%- endblock trailing_content %}
{%- include "partials/footer.html" %}
2022-08-08 04:31:56 +00:00
</div>
</body>
</html>