1 2 3 4 5 6 7 8 9 10
{% 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 %}