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

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

{% if resume.resume %}{{ resume.resume }}{% endif %}
{% if resume.phone %}{{ resume.phone }}
{% endif %} {% if resume.city or resume.country %}{{ resume.city|default:"" }} {{ resume.country|default:"" }}
{% 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 %}

{% if not hide_project_url and project.project.url %}{{ project.project.url }}{% endif %}
{% if not hide_project_contribution and project.contribution %} {{ project.contribution|linebreaksbr }}
{% endif %}
{% 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 %}

{% if not hide_experience_description and experience.description %}{{ experience.description|linebreaksbr }}{% endif %} {% if not hide_experience_environment and experience.environment %}

{% trans "Technical environment" %}: {{ experience.environment }}
{% endif %} {% endfor %} {% endif %} {% if trainings %}

{% trans "Training" %}

{% for training in trainings %}

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

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

{% trans "Certifications" %}

{% for certification in certifications %}

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

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

{% trans "Hobbies" %}

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