summaryrefslogtreecommitdiff
path: root/templates/posts.html
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2024-09-14 11:22:54 -0400
committerAdam T. Carpenter <atc@53hor.net>2024-09-14 11:22:54 -0400
commit340a804e550cb5b733bd2e64e515e79740bb6338 (patch)
tree1cfcc87357ddc144d82b942dfb84742d491d8148 /templates/posts.html
parent0213fd2dcd09ca4b1252cdc45415a765a887d679 (diff)
downloadcarpentertutoring-340a804e550cb5b733bd2e64e515e79740bb6338.tar.xz
carpentertutoring-340a804e550cb5b733bd2e64e515e79740bb6338.zip
feat: impl tutors/about/team view
Diffstat (limited to 'templates/posts.html')
-rw-r--r--templates/posts.html4
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>