{% extends 'base.html' %} {% block content %} {%- for content in contents %} {%- if 'head' in content %}

{{ content.head | title }}

{%- endif %} {%- if 'subhead' in content %}

{{ content.subhead | title }}

{%- endif %} {%- if 'body' in content %} {% with data=content.body %} {% include "components/corr_translation.html" %} {% endwith %} {%- endif %} {%- if 'img' in content %}
{{ content.img.src }} {%- if 'caption' in content.img -%} {% with data=content.img.caption %} {% include "components/corr_translation.html" %} {% endwith %} {%- endif %}
{%- endif %} {%- endfor %} {% endblock %}