{% load static %} {% load wagtailcore_tags %} {% load wagtailimages_tags %} {% load i18n %} {% load wagtail_resume_extras %} {{ page.full_name }} - Resume

{{ page.full_name }}

{% if page.role %}
{{ page.role }}
{% endif %}
{% if page.display_last_update and page.latest_revision_created_at %}
Last updated: {{ page.latest_revision_created_at|date:"F Y" }}
{% endif %}
{% if page.social_links %}
{% for social_link in page.social_links %}
{{ social_link.value.text }}
{% endfor %}
{% endif %} {% if page.about %}
{{ page.about|markdown_to_bullets|safe }}
{% endif %} {% for block in page.resume %} {% if block.block_type == "work_experience" %}

{{ block.value.heading|default:"Experience" }}

{% with max_exp=block.value.maximum_experiences_displayed %} {% for experience in block.value.experiences %} {% if not experience.hidden %} {% if max_exp == 0 or forloop.counter <= max_exp %}

{{ experience.role }}

{{ experience.company }}
{% if experience.text %}
{{ experience.text|markdown_to_bullets|safe }}
{% endif %}
{% if experience.location %}
{{ experience.location }}
{% endif %}
{{ experience.from_date|date:"M Y" }} – {% if experience.currently_working_here %} present {% else %} {{ experience.to_date|date:"M Y" }} {% endif %}
{% endif %} {% endif %} {% endfor %} {% if max_exp > 0 %}

{{ block.value.maximum_experiences_user_text }}

{% endif %} {% endwith %}
{% endif %} {% endfor %} {% for block in page.resume %} {% if block.block_type == "writing" %}

{{ block.value.heading|default:"Publications" }}

{% endif %} {% endfor %} {% for block in page.resume %} {% if block.block_type == "contributions" %}

{{ block.value.heading|default:"Projects" }}

{% endif %} {% endfor %} {% for block in page.resume %} {% if block.block_type == "education" %}

{{ block.value.heading|default:"Education" }}

{% for education in block.value.educations %} {% if education.block_type == "degree" %} {% with education.value as degree %}

{{ degree.degree }}

{{ degree.university_name }}, {{ degree.field_of_study }}
{% if degree.university_url %} {% endif %}
{{ degree.studies_starting_date|date:"M Y" }} – {{ degree.studies_ending_date|date:"M Y" }}
{% endwith %} {% elif education.block_type == "certificate" %} {% with education.value as certificate %}

{{ certificate.name }}

{{ certificate.institute_name }}
{% if certificate.institute_url %} {% endif %}
{{ certificate.studies_starting_date|date:"M Y" }} – {{ certificate.studies_ending_date|date:"M Y" }}
{% endwith %} {% elif education.block_type == "course" %} {% with education.value as course %}

{{ course.name }}

{% if course.course_url %} {% endif %}
{{ course.studies_starting_date|date:"M Y" }} – {{ course.studies_ending_date|date:"M Y" }}
{% endwith %} {% endif %} {% endfor %}
{% endif %} {% endfor %}