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 }}
-
email
{% 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 %}
{% 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 }}
Experiences
{% for e in resume.experiences %}
{{ e.position }} - {{ e.company }}
{{ e.start_date }} - {% if not e.end_date %}Today{% else %}{{ e.end_date }}{% endif %}
{% for line in e.summary.split('\n')[:-1] %}
- {{ line }}
{% endfor %}
{% 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 }}
{{ p.description }}
{% endfor %}
{% endif %}