summaryrefslogblamecommitdiff
path: root/templates/posts.html
blob: 57d2480ac83bd04b23c4631e9b0199c3258de374 (plain) (tree)
1
2
3
4
5
6
7
8





                         

                                                       




                                    
{% extends "base.html" %}

{% block main %}
<section class="quiet">
	<p>
		<ul>
			{% for post in posts %}
			<li>{{ post.get_title() }}</li>
			{% endfor %}
		</ul>
	</p>
<section>
{% endblock %}