{% extends 'base.html' %} {% set meta = poem %} {% block extra_scripts %} {% script 'poem' %} {% endblock extra_scripts %} {% block content %} {% include "includes/nav.html" %}
{% if poem.titled %}

{{ poem.title }}

{% endif %}
{% for stanza in poem.text|parsePoem -%}

{% for line in stanza -%} {{ line.text|formatLine }}
{% endfor %}

{% endfor %}
{% endblock content %} {% block footer -%} {% endblock footer -%}