diff options
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 %} |