{% assign volunteer = data[1] | sort: 'startDate' | reverse %} {% for content in volunteer %}
  • {% if 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 = '' %} {% endif %} {{ date }}
    {{ content.position }}
    {{ content.organization }}
    {{ content.summary }}
      {% for item in content.highlights %}
    • {{ item }}
    • {% endfor %}
  • {% endfor %}