Education
      {% for e in cv.education %}
        {% if e.institution %}
          
  {{ e.institution }}
{% endif %}
          {% if e.startDate %}
            {{ e.startDate }}
          {% endif %}
          {% if e.endDate == '' %}
            {{ site.data.theme.t.present | default: 'Present' | prepend: ' — ' }}
          {% else %}
            {{ e.endDate | prepend: ' — ' }}
          {% endif %}
        
        {% if e.area %}
          {{ e.area }}{% if e.studyType %}{{ e.studyType | prepend: ', ' }}{% endif %}{% if e.gpa %}{{ e.gpa | prepend: ' (' | append: ' GPA)' }}{% endif %}
        {% endif %}
        {% if e.courses %}
          Courses
- 
            {% for course in e.courses %}
              
- {{ course }} {% endfor %}