diff options
author | Adam T. Carpenter <atc@53hor.net> | 2024-09-07 22:39:41 -0400 |
---|---|---|
committer | Adam T. Carpenter <atc@53hor.net> | 2024-09-07 22:39:41 -0400 |
commit | f2bd378e1a8cdfa7d1520b3734a748dd1cd9de25 (patch) | |
tree | f68df07e951db58dfa832be5723236199e20e797 /templates/posts.html | |
parent | ae00627e7c99fd21ce4ad8ec0692445f00a349b2 (diff) | |
download | carpentertutoring-f2bd378e1a8cdfa7d1520b3734a748dd1cd9de25.tar.xz carpentertutoring-f2bd378e1a8cdfa7d1520b3734a748dd1cd9de25.zip |
feat: serve static and assets add policies and index from base
Diffstat (limited to 'templates/posts.html')
-rw-r--r-- | templates/posts.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/posts.html b/templates/posts.html new file mode 100644 index 0000000..9f522a6 --- /dev/null +++ b/templates/posts.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block main %} +<section class="quiet"> + <p> + <ul> + {% for title in post_titles %} + <li>{{ title }}</li> + {% endfor %} + </ul> + </p> +<section> +{% endblock %} |