{{ resume.basics.name }}

{{ resume.basics.label}}

Summary

{{ resume.basics.summary }}

Experience

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

{{ job.description }}

{{ job.position }}

{{ job.summary }}

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

Open Source Projects

{% for project in resume.projects %}

{{ project.name }} {{ project.url }}

{{ project.startDate|datetime_format }} - {{ project.endDate|datetime_format }}

{{ project.description }}

{% for keyword in project.keywords %}
{{ keyword }}
{% endfor %}
    {% for highlight in project.highlights %}
  • {{ highlight }}
  • {% endfor %}
{% endfor %}

Education

{% for school in resume.education %}

{{ school.institution }}

{{ school.startDate|datetime_format }} - {{ school.endDate|datetime_format }}

{{ school.studyType }} {{ school.area }}

{{ school.gpa }}
    {% for course in school.courses %}
  • {{ course }}
  • {% endfor %}
{% endfor %}

Volunteer

{% for volunteer in resume.volunteer %}

{{ volunteer.organization}}

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

{{ volunteer.summary }}

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

Awards

{% for award in resume.awards %}

{{ award.title }}

{{ award.date|datetime_format }}
{{ award.awarder}}

{{ award.summary}}

{% endfor %}

Publications

{% for pub in resume.publications %}

{{ pub.name }}

{{ pub.releaseDate|datetime_format }}
{{ pub.publisher}}

{{ pub.summary }}

{% endfor %}

References

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