22 lines
404 B
HTML
22 lines
404 B
HTML
|
{% 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 #}
|
||
|
<div class="inner">
|
||
|
{% block main_content %}
|
||
|
Nothing here?!
|
||
|
{% endblock main_content %}
|
||
|
</div>
|
||
|
|
||
|
{% include "partials/footer.html" %}
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|