{% for content in entry.contents %}
  • {% if content.year %}
    {{ content.year }}
    {% endif %}
    {% if content.title %}
    {{content.title}}
    {% endif %} {% if content.institution %}
    {{content.institution}}
    {% endif %} {% if content.description %}
      {% for item in content.description %}
    • {% if item.contents %} {{ item.title }}
        {% for subitem in item.contents %}
      • {{ subitem }}
      • {% endfor %}
      {% else %} {{ item }} {% endif %}
    • {% endfor %}
    {% endif %} {% if content.items %}
      {% for item in content.items %}
    • {% if item.contents %} {{ item.title }}
        {% for subitem in item.contents %}
      • {{ subitem }}
      • {% endfor %}
      {% else %} {{ item }} {% endif %}
    • {% endfor %}
    {% endif %}
  • {% endfor %}