{% 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 'raw' in content %}
{%- for raw in content.raw -%} [{{ loop.index }}]{{ raw }} {%- endfor -%} {%- for translated in content.translated -%} [{{ loop.index }}]{{ translated }} {%- endfor -%}
{%- endif %} {%- if 'img' in content %}

{{ content.img }}

{%- endif %} {%- endfor %} {% endblock %}