You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
394 B
HTML
21 lines
394 B
HTML
2 years ago
|
{% import "macros/macros.html" as post_macros %}
|
||
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
|
||
|
{% include "partials/header.html" %}
|
||
|
|
||
|
<body>
|
||
|
<div class="content">
|
||
|
<div class="wrapper">
|
||
|
{% include "partials/nav.html" %}
|
||
|
|
||
|
{# Post page is the default #}
|
||
|
{% block main_content %}
|
||
|
Nothing here?!
|
||
|
{% endblock main_content %}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
</body>
|
||
|
|
||
|
</html>
|