summaryrefslogtreecommitdiff
path: root/templates/posts.html
blob: 2f1df6b744acb947c30d511c36e6394c7ef6d823 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block main %}
<section class="banner">
	<h1>Posts</h1>
</section>

<section>
	<p>
		{% for post in posts %}
	<h2><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h2>
	{% endfor %}
	</p>
	<section>
		{% endblock %}