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

{% block main %}
<section class="quiet">
	<p>
		<ul>
			{% for title in post_titles %}
			<li>{{ title }}</li>
			{% endfor %}
		</ul>
	</p>
<section>
{% endblock %}