{% import "macros/macros.html" as post_macros %}
<!DOCTYPE html>
<html lang="zh">

{% 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 %}
        {% include "partials/footer.html" %}
    </div>
    </div>
   
</body>

</html>