{% extends "base.html" %}

{% import "post_macros.html" as post_macros %}
{% block content %}
<main>
    <article itemscope itemtype="http://schema.org/CreativeWork">
        <header>
            <h1><a href="{{ page.permalink | safe }}">
                    {{ page.title }}
            </a></h1>
        </header>
        {{ page.content | safe }}
    </article>
</main>
{% endblock content %}