Photo
Contact
account_circle
Born: {{ resume.contact.date_of_birth }}
location_city
{{ resume.contact.location.address }}
{% if resume.contact.location.zip %} {{ resume.contact.location.zip }} {% endif %}{{ resume.contact.location.city }}
{% if resume.contact.location.country %} {{ resume.contact.location.country }} {% endif %}
phone
{{ resume.contact.phone }}
{% for p in resume.profiles %}
{% if p.network|upper == "GITHUB" %}
{% elif p. network|upper == "GITLAB" %}
{% elif p. network|upper == "FACEBOOK" %}
{% elif p. network|upper == "TWITTER" %}
{% else %}
language
{% endif %}
{% endfor %}
Skills
{% for s in resume.skills %}
{{ s.name }}
{% endfor %}
Languages
{% for l in resume.languages %}
{{ l.name }}:   {{ l.level }}
{% endfor %}
Hobbies
{% for h in resume.hobbies %}
{{ h.name }}  {{ h.details }}
{% endfor %}

{{ resume.contact.name }}

{{ resume.contact.job }}
{{ resume.contact.summary }}
Experiences
{% for e in resume.experiences %}

{{ e.position }} - {{ e.company }}

{% if not e.end_date %} Since {{ e.start_date }} {% else %} {{ e.start_date }} - {{ e.end_date }} {% endif %}

{{ e.summary }}

{% if e.tags %}
-{% for tag in e.tags %} {{ tag }} -{% endfor %}
{% endif %}
{% endfor %}
Education
{% for d in resume.education %}

{{ d.degree }}

{{ d.start_date }} - {% if not d.end_date %}Today{% else %}{{ d.end_date }}{% endif %}
{{ d.institution }}
{% endfor %} {% if resume.projects %}
Projects
{% for p in resume.projects %}

{{ p.name }}

{% if p.url %}{{ p.url }}{% endif %}
{{ p.description }}
{% endfor %} {% endif %}