{% extends "base.html" %} {% block title %}Curriculum Vitae{% endblock %} {% macro render_section(section) %}
{% if section.title %}

{{ section.title }}

{% endif %} {% if section.lead %}

{{ section.lead }}

{% endif %}

{% endmacro %} {% block content %}

{{ document.contact.full_name }}

{% if document.contact.phone %}{{ document.contact.phone }}{% endif %}
{{ document.contact.email }}
{% if document.contact.website %}{{ document.contact.website }}{% endif %}

Download PDF

Please be aware that the CV sections are still under construction and are therefore not yet complete in terms of content.

{% if document.highlighted_narrative %}

{{ document.highlighted_narrative }}

{% endif %} {% for block in document.areas if block.sections %} {% if block.is_subject or document.is_boss %}
{% if not block.is_subject %}{% if document.is_boss %}

{{ block.title }}

{% else %}

{{ block.title }}

{% endif %}{% endif %} {% for section in block.sections %} {{ render_section(section) }} {% endfor %}

{% endif %} {% endfor %} {% for section in document.common %} {{ render_section(section) }} {% endfor %}
{% endblock %}