aboutsummaryrefslogtreecommitdiffstats
path: root/templates/poetry.html
blob: 8c51cff465a6f0d3a412fa3cdce590e897eb9470 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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 %}