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

{% 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 %}