summaryrefslogtreecommitdiff
path: root/templates/posts.html.j2
diff options
context:
space:
mode:
authorAdam T. Carpenter <atc@53hor.net>2025-05-18 16:03:55 -0400
committerAdam T. Carpenter <atc@53hor.net>2025-05-18 16:03:55 -0400
commit06aa80c432b3e0b3bab35057f62c4fab7abea52e (patch)
tree2f5190f7ffe19efdcdb92c5bb70840b41862a81c /templates/posts.html.j2
parent6ce8c584359152512a5c7269e565d43703a4de6f (diff)
downloadcarpentertutoring-06aa80c432b3e0b3bab35057f62c4fab7abea52e.tar.xz
carpentertutoring-06aa80c432b3e0b3bab35057f62c4fab7abea52e.zip
feat: post cards, fix about, clean up unused styles
Diffstat (limited to 'templates/posts.html.j2')
-rw-r--r--templates/posts.html.j220
1 files changed, 14 insertions, 6 deletions
diff --git a/templates/posts.html.j2 b/templates/posts.html.j2
index e9efdfb..eec04a9 100644
--- a/templates/posts.html.j2
+++ b/templates/posts.html.j2
@@ -6,10 +6,18 @@
</section>
<section>
- <p>
- {% for post in posts %}
- <h2><a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a></h2>
+ <h2>
+ Refining how we think and teach.
+ </h2>
+</section>
+
+<section class="cards">
+ {% for post in posts %}
+ <div class="card">
+ <h2>
+ <a href="/posts/{{ post.get_title()|e }}">{{ post.get_title() }}</a>
+ </h2>
+ </div>
{% endfor %}
- </p>
- <section>
- {% endblock %} \ No newline at end of file
+</section>
+{% endblock %} \ No newline at end of file