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

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

{{ "DevOPS engineer/backend web developer" | translate }}

{{ "About Me" | translate }}

{{ cv.person.about | lang_entity }}

Bio

Age
{{ cv.person.birthday | calculate_age }}
Email
{{ cv.person.email }}
Phone
+ {{cv.person.phone | insert_space_every(times=3) }}
{% if cv.person.address %}
Address
{{ cv.person.address }}
{% endif %}

{{ "Professional Skills" | translate }}

{% set arr_cnt = cv.skills | length %} {% set split_index = arr_cnt / 2 | round(method="ceil") %} {% for skill in cv.skills | slice(start = 0, end = split_index) %} {{ split_index}}
{{ skill.name }}
{{ skill.skill}}
{% endfor %}
{% for skill in cv.skills | slice(start = split_index) %} {{ split_index}}
{{ skill.name }}
{{ skill.skill}}
{% endfor %}

{{ "Professional Skills" | translate }}

{% for job in cv.jobs %}
{{ job.title }} at {{ job.company }}
May, 2015 - Present
{{ job.description | lang_entity }}
{% endfor %}

{{ "Education " | translate }}

{% for education in cv.education %}
{% if education.degree %}
{{ education.degree | lang_entity }} {{ education.school }}
{% else %}
{{ education.school }}
{% endif %}
{% if education.description %}
2011 - 2013
{{ education.description | lang_entity }}
{% else %} 2011 - 2013 {% endif %}
{% endfor %}

Contact

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