{% if image %}Photo{% endif %}

{{ resume.contact.name }}

{{ resume.contact.job }}

Born: {{ resume.contact.date_of_birth }}
Address: {{ resume.contact.location.address }}, {% if resume.contact.location.zip %}{{ resume.contact.location.zip }} {% endif %}{{ resume.contact.location.city }} {% if resume.contact.location.country %}{{ resume.contact.location.country }}{% endif %}
Phone: {{ resume.contact.phone }}
Email: {{ resume.contact.email }}

{% for p in resume.profiles %} {{ p.network }}: {{ p.url }}
{% endfor %}

Experience
{% for e in resume.experiences %}

{{ e.company }} - {{ e.position }}{{ e.start_date }} - {% if not e.end_date %}Today{% else %}{{ e.end_date }}{% endif %}

    {% for line in e.summary.split('\n')[:-1] %}
  • {{ line }}
  • {% endfor %}
{% if e.tags %}
-{% for tag in e.tags %} {{ tag }} -{% endfor %}
{% endif %}
{% endfor %}
Education
{% for d in resume.education %}

{{ d.institution }}{{ d.start_date }} - {% if not d.end_date %}Today{% else %}{{ d.end_date }}{% endif %}

{{ d.degree }}

{% endfor %}
Skills
{% for s in resume.skills %}

{{ s.name }} {% if s.level %} {% for i in range(10) %}{% if i < s.level|int//10 %}★{% else %}☆{% endif %}{% endfor %} {% endif %}

{% endfor %}
Languages
{% for l in resume.languages %}

{{ l.name }}{{ l.level }}

{% endfor %}
{% if resume.projects %}
Projects
{% for p in resume.projects %}

{{ p.name }}: {{ p.url }}

{{ p.description }}

{% endfor %}
{% endif %}
Hobbies
{% for h in resume.hobbies %}

{{ h.name }}{{ h.details }}

{% endfor %}