summaryrefslogtreecommitdiff
path: root/templates/post.html
blob: 3155c7a05e3f85b1a85c9507634e4a8fd0ff5633 (plain) (blame)
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 %}