{% extends "base" %} {% block content %}

{{ cv.person.name }} {{ cv.person.surname }}

{{ "devops-enginner-web-developer" | translate(lang=lang) }}

{{ "about-me" | translate(lang=lang) }}

{{ cv.person.about | lang_entity(lang=lang) }}

{{ "bio" | translate(lang=lang) }}

{{ "age" | translate(lang=lang) }}
{{ cv.person.birthday | calculate_age }}
{{"email" | translate(lang=lang) }}
{{ cv.person.email }}
{{ "phone" | translate(lang=lang) }}
+ {{cv.person.phone | insert_space_every(times=3) }}
{% if cv.person.address %}
{{"address" | translate(lang=lang) }}
{{ cv.person.address }}
{% endif %}
{% if cv.person.social.facebook %}  {{ cv.person.social.github }} {% endif %} {% if cv.person.social.github %}  {{ cv.person.social.github }} {% endif %} {% if cv.person.social.linkedin %}  {{ cv.person.social.linkedin }} {% endif %} {% if cv.person.social.instagram %}  {{ cv.person.social.instagram }} {% endif %} {% if cv.person.social.mastodon %}  {{ cv.person.social.mastodon }} {% endif %}

{{ "professional-skills" | translate(lang=lang) }}

{% for skill in cv.skills | filter(attribute="techtype",value="Language") %}
{{ skill.name }}
{{ skill.skill}}
{% endfor %}
{% for skill in cv.skills | filter(attribute="techtype",value="Technology") | advanced_filter(attribute="skill", include_null="none") %}
{{ skill.name }}
{{ skill.skill}}
{% endfor %} {% for skill in cv.skills | filter(attribute="techtype",value="Framework") | advanced_filter(attribute="skill", include_null="none") %}
{{ skill.name }}
{{ skill.skill}}
{% endfor %} {% for skill in cv.skills | filter(attribute="techtype",value="Technology") | advanced_filter(attribute="skill", include_null="only") %} {{ skill.name }}, {% endfor %}

{{ "work-experience" | translate(lang=lang) }}

{% for job in cv.jobs %}
{{ job.title }} at {{ job.company }}
{% if job.from | format_date(type="job") != job.from | format_date(type="job") %}
{{ job.from | format_date(type="job") }} - {{ job.to | format_date(type="job") }}
{% else %}
{{ job.from | format_date(type="job") }}
{% endif %}
{{ job.description | lang_entity(lang=lang) }}
{% endfor %}

{{ "education" | translate(lang=lang) }}

{% for education in cv.education %}
{% if education.degree %}
{{ education.degree | lang_entity(lang=lang) }} {{ education.school }}
{% else %}
{{ education.school }}
{% endif %}
{% if education.description %}
{{ education.from | format_date(type="job") }} - {{ education.to | format_date(type="job") }}
{{ education.description | lang_entity(lang=lang) }}
{% else %} {{ education.from | format_date(type="job") }} {% endif %}
{% endfor %}

{{ "contact" | translate(lang=lang) }}

{{ cv.person.phone | insert_space_every(times=3) }}
{{ cv.person.email }}
{% endblock content %}