diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-09-14 21:24:02 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-09-14 21:24:02 -0400 |
commit | d85d3b410c038322f155319a2fd5941d15b0e886 (patch) | |
tree | 761959c632da9a010da700bf9816c739f1cc7080 /templates/posts.html | |
parent | aad33fee01abe817d82c094f83ffd44ca36c8456 (diff) | |
download | carpentertutoring-d85d3b410c038322f155319a2fd5941d15b0e886.tar.xz carpentertutoring-d85d3b410c038322f155319a2fd5941d15b0e886.zip |
fix: odds and ends
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 0cb4cf1..052cd42 100644 --- a/templates/posts.html +++ b/templates/posts.html @@ -2,13 +2,13 @@ {% block main %} <section class="banner"> - <h1>Journal Posts</h1> + <h1>Posts</h1> </section> <section class="quiet"> <p> {% for post in posts %} - <h3><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h3> + <h2><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h2> {% endfor %} </p> <section> |