blob: 0cb4cf112fbf36d7981c097e7862b9a3b0566172 (
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>Journal Posts</h1>
</section>
<section class="quiet">
<p>
{% for post in posts %}
<h3><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h3>
{% endfor %}
</p>
<section>
{% endblock %}
|