1 2 3 4 5 6 7 8 9 10 11 12 13
{% extends "base.html" %} {% block main %} <section class="banner"> <h1>{{ post.get_title() }}</h1> </section> <section class="quiet"> <article> {{ post.get_article()|markdown }} </article> </section> {% endblock %}