{{ resume.basics.name }}

{{ resume.basics.email }} {{ resume.basics.phone }}

{{ resume.basics.summary }}

{% for profile in resume.basics.profiles %}
{{ profile.network|capitalize }} {% if profile.url %} {{ profile.username}} {% else %} {{ profile.username }} {% endif %}
{% endfor %}

Skills

{% for skill in resume.skills %}
{{ skill.name }}
{{ skill.keywords|join(', ') }}
{% endfor %}

Experience

{% for job in resume.work %}
{{ job.position }} {{ job.startDate|datetime_format }} - {{ job.endDate|datetime_format }}

{{ job.summary }}

    {% for highlight in job.highlights %}
  • {{ highlight }}
  • {% endfor %}
{% endfor %}

Volunteering

{% for volunteer in resume.volunteer %}

{{ volunteer.organization }}

{{ volunteer.position }} {{ volunteer.startDate|datetime_format }} - {{ volunteer.endDate|datetime_format }}

{{ volunteer.summary }}

    {% for highlight in volunteer.highlights %}
  • {{ highlight }}
  • {% endfor %}
{% endfor %}

Education

{% for school in resume.education %}

{{ school.institution }}

{{ school.startDate|datetime_format }} - {{ school.endDate|datetime_format }}
{{ school.studyType }} - {{ school.area }} GPA: {{ school.gpa }}
{% endfor %}

Awards

{% for award in resume.awards %}
{{ award.title }}
{{ award.date }}
{{ award.awarder }}

{{ award.summary }}

{% endfor %}

Publications

{% for pub in resume.publications %}
{{ pub.name }}
{{ pub.publisher }}
{{ pub.releaseDate }}

{{ pub.summary }}

{% endfor %}

Languages

{% for lang in resume.languages %}
{{ lang.language }}
{{ lang.fluency }}
{% endfor %}

Interests

{% for interest in resume.interests %}
{{ interest.name }}
    {% for keyword in interest.keywords %}
  • {{ keyword }}
  • {% endfor %}
{% endfor %}

References

{% for reference in resume.references %}
{{ reference.reference }}
— {{ reference.name }}
{% endfor %}