{% assign education = data[1] | sort: 'startDate' | reverse %} {% for content in education %}
  • {% if content.startDate and content.startDate!="" %} {% assign startDate = content.startDate | split: "-" | slice: 0,2 | join: "." %} {% assign endDate = content.endDate | split: "-" | slice: 0,2 | join: "." | default: "Present" %} {% assign date = startDate | append: " - "%} {% assign date = date | append: endDate %} {% else %} {% assign date = null %} {% endif %} {% if content.location %} {% endif %}
    {% if date %} {{date}} {% endif %}

    {{ content.location }}

    {{content.studyType}}
    {{content.institution}}
    {{content.area}}
      {% for item in content.courses %}
    • {{ item }}
    • {% endfor %}
  • {% endfor %}