19 lines
412 B
HTML
19 lines
412 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 #}
|
|
{% block main_content %}
|
|
Nothing here?!
|
|
{% endblock main_content %}
|
|
</div>
|
|
<a rel="me" href="https://socialnotwork.net/@nebkor"></a>
|
|
</body>
|
|
|
|
</html>
|