diff options
Diffstat (limited to 'templates/poetry.html')
-rw-r--r-- | templates/poetry.html | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/templates/poetry.html b/templates/poetry.html new file mode 100644 index 0000000..8c51cff --- /dev/null +++ b/templates/poetry.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block nav_poetry %}active{% endblock %} + +{% block content %} + +<div id="poems"> + {% for poem in poems %} + {% include "poem-panel.html" %} + {% endfor %} +</div> + +{% endblock content %}
\ No newline at end of file |