{% block content %}

{{ resume.name }}

{{ resume.title }}
{% if resume.email %}{{ resume.email }}{% endif %} {% if resume.phone %}{{ resume.phone }}{% endif %} {% if resume.location %}{{ resume.location }}{% endif %} {% for link in resume.links | default([]) %} {{ link.label }} {% endfor %}
{% if resume.summary %}

Summary

{{ resume.summary }}

{% endif %} {% if resume.experience %}

Experience

{% for job in resume.experience %}
{{ job.title }} {{ job.start }} – {{ job.end }}
{% if job.highlights %} {% endif %}
{% endfor %}
{% endif %} {% if resume.education %}

Education

{% for edu in resume.education %}
{{ edu.degree }} {{ edu.start }} – {{ edu.end }}
{% endfor %}
{% endif %} {% if resume.skills %}

Skills

{% for category, items in resume.skills.items() %}
{{ category }}
{{ items }}
{% endfor %}
{% endif %} {% endblock %}