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

{% trans %}resume education title{% endtrans %} ({{ education | length }})

{% for education_item in education %}
{% if education_item.summary %} {% if loop.first %} {% else %} {% endif %} {% endif %}
{% if education_item.studyType %}
{{ education_item.studyType }}
{% endif %} {% if education_item.area %}
{{ education_item.area }}
{% endif %} {% if education_item.institution %}
{{ education_item.institution }}
{% endif %}
{% if education_item.startDate %} {{ education_item.startDate }} {% endif %} {% if education_item.endDate %} - {{ education_item.endDate }} {% else %} - {{ language.phrases.present }} {% endif %}
{% if education_item.location %} {% if education_item.city %} {{ education_item.city }}, {% endif %} {% if education_item.countryCode %} ({{ education_item.countryCode }}) {% endif %} {% if education_item.region %} {{ education_item.region }} {% endif %} {% endif %} {% if education_item.courses %}
    {% for course in education_item.courses %}
  • {{ course }}
  • {% endfor %}
{% endif %}
{% if education_item.score %}
Grade: {{ education_item.score }}
{% endif %} {% if education_item.summary %}
{{ education_item.summary | replace("\r\n", "
") | replace("\n", "
") | replace("\r", "
") }}
{% endif %}
{% endfor %}
{% endif %}