{{ resume.basics.summary }}

Skills

{% for skill in resume.skills %}

{{ skill.name}}

{{ skill.level }}
    {% for keyword in skill.keywords %}
  • {{ keyword }}
  • {% endfor %}
{% endfor %}

Work Experience ({{ resume.work|length }})

{% for job in resume.work %}

{{ job.summary }}

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

  • {% endfor %}
{% endfor %}

Projects ({{ resume.projects|length }})

{% for project in resume.projects %}
{{ project.name }}
{{ project.startDate|datetime_format }} - {{ project.endDate|datetime_format }}
{{ project.url }}
    {% for keyword in project.keywords %}
  • {{ keyword }}
  • {% endfor %}
    {% for highlight in project.highlights %}
  • {{ highlight }}

  • {% endfor %}
{% endfor %}

Volunteer

{% for volunteer in resume.volunteer %}
{{ volunteer.position }}
{{ volunteer.organization }}
{{ volunteer.startDate|datetime_format }} - {{ volunteer.endDate|datetime_format }}

{{ volunteer.summary }}

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

  • {% endfor %}
{% endfor %}

Education ({{ resume.education|length }})

{% for school in resume.education %}
{{ school.studyType }}
{{ school.area }}
{{ school.institution }}
{{ school.startDate|get_year }} - {{ school.endDate|get_year }}
    {% for course in school.courses %}
  • {{ course }}
  • {% endfor %}
Grade: {{ school.gpa }}
{% endfor %}

Awards

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

{{ award.summary }}

{% endfor %}

Publications

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

{{ 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 %}