{{ basics.name }}

{% if basics.email %}

{{ basics.email }}

{% endif %}

Work

{% for w in work %}

{{ w.position }} — {{ w.company }}

{{ w.startDate }} — {{ w.endDate or 'Present' }}

{% if w.highlights %}
    {% for h in w.highlights %}
  • {{ h }}
  • {% endfor %}
{% endif %}
{% endfor %}

Education

{% for e in education %}

{{ e.institution }} — {{ e.studyType or ''}}

{{ e.startDate }} — {{ e.endDate or '' }}

{% endfor %}