{% set volunteer = page.resume.volunteer %} {% if volunteer %}

Volunteer

{% for volunteer_item in volunteer %}
{% if volunteer_item.organization %} {% if volunteer_item.summary %} {% if loop.first %} {% else %} {% endif %} {% endif %}
{% if volunteer_item.position %}
{{ volunteer_item.position }}
{% endif %}
{{ volunteer_item.organization }}
{% if volunteer_item.startDate %} {{ volunteer_item.startDate }} {% endif %} {% if volunteer_item.endDate %} - {{ volunteer_item.endDate }} {% else %} - {{ language.phrases.present }} {% endif %}
{% endif %} {% if volunteer_item.url %} {% endif %} {% if volunteer_item.location %} {% if volunteer_item.city %} {{ volunteer_item.city }}, {% endif %} {% if volunteer_item.countryCode %} ({{ volunteer_item.countryCode }}) {% endif %} {% if volunteer_item.region %} {{ volunteer_item.region }} {% endif %} {% endif %} {% if volunteer_item.keywords %}
    {% for keyword in volunteer_item.keywords %}
  • {{ keyword }}
  • {% endfor %}
{% endif %}
{% if volunteer_item.summary %}
{{ volunteer_item.summary | replace("\r\n", "
") | replace("\n", "
") | replace("\r", "
") }}
{% endif %} {% if volunteer_item.highlights %}
    {% for highlight in volunteer_item.highlights %}
  • {{ highlight | replace("\r\n", "
    ") | replace("\n", "
    ") | replace("\r", "
    ") }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %}