Education
{% for e in cv.education %}
{% if e.institution %}
{{ e.institution }}
{% endif %}
{% if e.startDate %}
{{ e.startDate }}
{% endif %}
{% if e.endDate %}
{{ e.endDate | prepend: ' — ' }}
{% else %}
{{ Present | 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 %}