blob: 052cd420996a07cfb878e5fb45fa1ccdb7134d6b (
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 class="quiet">
<p>
{% for post in posts %}
<h2><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h2>
{% endfor %}
</p>
<section>
{% endblock %}
|