{{ resume.basics.label }}
{{ resume.basics.summary | markdown | safe }}Work Experience
{% for job in resume.work %}
{% if not job.endDate %}●{% endif %}
{{ job.position }}
{{ job.startDate | formatDate }} - {{ job.endDate | formatDate }}
{{ job.name }}
{% if job.highlights and job.highlights.length > 0 %}
{% for highlight in job.highlights %}
{{ highlight }}
{% endfor %}
{% endif %}
{% if job.summary %}
{{ job.summary | markdown | safe }}
{% endif %}
Education
{% for edu in resume.education %}
{% if not edu.endDate %}●{% endif %}
{{ edu.studyType }} in {{ edu.area }}
{{ edu.startDate | formatDate }} - {{ edu.endDate | formatDate }}
{{ edu.institution }}
{% if edu.score %}
{{ edu.score }}
{% endif %}
Projects
{% for project in resume.projects %}{{ project.name }}
{{ project.description }} {% if project.highlights and project.highlights.length > 0 %} {% for highlight in project.highlights %} {{ highlight }} {% endfor %} {% endif %}References
{% if false %} {% for reference in resume.references %}{{ reference.name }}
{{ reference.reference }}Contact me.
{% endif %} {% endif %}