Personal Information: {{ name }}

{% for title, items in sections %} {% if items %}

{{ title }}

{% if items is mapping %} {% elif items is iterable %} {% set idx = 1 %} {% for entry in items %}
{{ title[:-1] if title.endswith('s') else title }} {{ idx }}:
{% set idx = idx + 1 %} {% endfor %} {% endif %}
{% endif %} {% endfor %}