{% load i18n curriculum %}
{% if resume.image %} {% endif %}

{{ resume.firstname }} {{ resume.lastname }}
{{ resume.title }}

{{ resume.resume }}
{% if resume.phone %}{{ resume.phone }}
{% endif %} {% if resume.city or resume.country %}{{ resume.city }} {{ resume.country }}
{% endif %} {% if resume.address %}{{ resume.address }}
{% endif %} {% if resume.email %}{{ resume.email }}
{% endif %} {% if resume.website %}{{ resume.website|shortlink|safe }}
{% endif %} {% if resume.skype %}Skype: {{ resume.skype }}
{% endif %} {% if resume.twitter %}Twitter: {{ resume.twitter }}
{% endif %} {% if resume.stackoverflow %}stackoverflow: {{ resume.stackoverflow }}
{% endif %} {% if resume.github %}GitHub: {{ resume.github }}
{% endif %}
{% if skills %}

{% trans "Skills" %}

{% for skill in skills %} {% ifchanged skill.category %}

{{ skill.category|capfirst }}

{% endifchanged %} {{ skill }}, {% endfor %} {% endif %} {% if projects %}

{% trans "Projects" %}

{% for project in projects %}

{{ project.project.title }} {% daterange_display project.start_year project.start_month project.end_year project.end_month %}

{{ project.contribution|linebreaksbr }} {% endfor %} {% endif %} {% if experiences %}

{% trans "Experiences" %}

{% for experience in experiences %}

{{ experience }} {% daterange_display experience.start_year experience.start_month experience.end_year experience.end_month %}

{{ experience.description|linebreaksbr }} {% endfor %} {% endif %} {% if trainings %}

{% trans "Training" %}

{% for training in trainings %}

{{ training.degree }} in {{ training.topic }} {% daterange_display training.year training.month %}

{{ training.description|linebreaksbr }} {% endfor %} {% endif %} {% if certifications %}

{% trans "Certifications" %}

{% for certification in certifications %}

{{ certification }} {% daterange_display certification.start_year certification.start_month %}

{{ certification.certification.description|linebreaksbr }} {% endfor %} {% endif %} {% if resume.hobbies %}

{% trans "Hobbies" %}

{{ resume.hobbies|linebreaksbr }} {% endif %}