diff options
Diffstat (limited to 'templates/posts.html')
-rw-r--r-- | templates/posts.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/posts.html b/templates/posts.html index 9f522a6..57d2480 100644 --- a/templates/posts.html +++ b/templates/posts.html @@ -4,8 +4,8 @@ <section class="quiet"> <p> <ul> - {% for title in post_titles %} - <li>{{ title }}</li> + {% for post in posts %} + <li>{{ post.get_title() }}</li> {% endfor %} </ul> </p> |