{% set useInResume = cv.filterByUseInResume() %} {% set toolbox = cv.filterByToolbox() %} {% import "macros.html.twig" as macros %}

{{ 'resume.header'|trans }}

{{ 'resume.headers.personal'|trans }}

{{ 'resume.personal.name'|trans }}
{{ person.getName(true) }}
{{ 'resume.personal.birthdate'|trans }}
{{ person.birthdate.format(config('date.format.long')) }}
{{ 'resume.personal.birthplace'|trans }}
{{ person.birthplace }}
{{ 'resume.personal.residence'|trans }}
{{ person.residence }}
{{ 'resume.personal.status'|trans }}
{{ person.status }}
{{ 'resume.personal.nationality'|trans }}
{{ person.nationality }}
{% if person.workLicense %}
{{ 'resume.personal.work_license'|trans }}
{{ person.workLicense }}
{% endif %} {% if person.languages|length > 0 %}
{{ 'resume.personal.languages'|trans }}
    {% for lang in person.languages %}
  • {{ lang.language }} ({{ ('resume.language.level.' ~ lang.level)|trans }})
  • {% endfor %}
{% endif %}
{% if person.contacts|length > 0 %}

{{ 'resume.headers.contact'|trans }}

{% for contact in person.contacts %} {% set type = contact.type %} {% if contact.type == 'email' or contact.type == 'phone' %} {% set type = ('resume.contact.' ~ contact.type)|trans %} {% endif %}
{{ type }}
{{ contact.address }}
{% endfor %}
{% endif %}

{{ 'resume.headers.experience'|trans }}

{% for industry, length in cv.getExperienceYears() %}
{{ industry }}
{{ length }}
{% endfor %}
{% if person.content %}

{{ 'resume.headers.bio'|trans }}

{{ person.content|raw }}
{% endif %}

{{ 'resume.headers.qualification'|trans }}

    {% for entry in cv.qualifications %}
  • {{ entry.qualification|splitmerge(',', '
  • ') }}
  • {% endfor %}
{% if toolbox|length > 0 %}

{{ 'resume.headers.toolbox'|trans }}

    {% for entry in toolbox %} {{ macros.list_simple_array(entry.toolbox) }} {% endfor %}
{% endif %} {% if person.interests|length > 0 %}

{{ 'resume.headers.personal_interest'|trans }}

    {{ macros.list_simple_array(person.interests) }}
{% endif %}
{% if person.links|length > 0 %}

{{ 'resume.headers.links'|trans }}

    {{ macros.list_link_array(person.links) }}
{% endif %} {% if person.references|length > 0 %}

{{ 'resume.headers.references'|trans }}

    {{ macros.list_references(person.references) }}
{% endif %} {% if person.projects|length > 0 %}

{{ 'resume.headers.current_projects'|trans }}

    {{ macros.list_simple_array(person.projects) }}
{% endif %} {% if useInResume|length > 0 %}

{{ 'resume.headers.skills'|trans }}

    {{ macros.list_entry_attribute(useInResume, 'skills') }}

{{ 'resume.headers.achievements'|trans }}

    {{ macros.list_entry_attribute(useInResume, 'achievements') }}
{% endif %}