{% 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 }} {{ job.company }}{% if job.location %} · {{ job.location }}{% endif %} {% if job.highlights %} {% for item in job.highlights %} {{ item }} {% endfor %} {% endif %} {% endfor %} {% endif %} {% if resume.education %} Education {% for edu in resume.education %} {{ edu.degree }} {{ edu.start }} – {{ edu.end }} {{ edu.institution }} {% endfor %} {% endif %} {% if resume.skills %} Skills {% for category, items in resume.skills.items() %} {{ category }} {{ items }} {% endfor %} {% endif %} {% endblock %}
{{ resume.summary }}