22 lines
492 B
HTML
22 lines
492 B
HTML
{% import "macros/macros.html" as post_macros %}
|
|
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
{% include "partials/header.html" %}
|
|
|
|
<body>
|
|
<div class="content">
|
|
{% include "partials/nav.html" -%}
|
|
{#- Post page is the default #}
|
|
<main class="inner">
|
|
{%- block main_content -%}
|
|
Nothing here?!
|
|
{%- endblock main_content -%}
|
|
</main>
|
|
{% block trailing_content -%}
|
|
{%- endblock trailing_content %}
|
|
{%- include "partials/footer.html" %}
|
|
</div>
|
|
</body>
|
|
|
|
</html> |