{% for section_title, entries in body.items() %}

{{ section_title }}

{% for entry in entries %}
{% if entry.title %}
{{ entry.title }}
{% if entry.start or entry.end %} {% endif %}
{% endif %} {% if entry.company or entry.school %}
{% if entry.company %}{{ entry.company }}{% endif %} {% if entry.company and entry.title_link %} | {% endif %} {% if entry.title_link %}{{ entry.title_link }}{% endif %} {% if entry.school %}{{ entry.school }}{% endif %} {% if entry.field %}— {{ entry.field }}{% endif %}
{% endif %} {% if entry.description %}
{% autoescape false %} {{ entry.description }} {% endautoescape %}
{% endif %}
{% endfor %}
{% endfor %}