blob: 49f3cd5397ff07b7eae7a16fbb601719422f7f26 (
plain) (
tree)
|
|
{% extends "base.html" %}
{% block content %}
{% set post = page -%}
<article class="post">
{% include "posts/header.html" %}
<section class="post-body">
{{ post.content | safe }}
</section>
</article>
{% endblock content %}
|