{% extends "./base.html" %} {% load static %} {% block title %}Curriculum Vitae of {{ identity.name }}{% endblock title %} {% block meta %} {{ block.super }} {% endblock meta %} {% block body %} {% if show_edit_button %} {% else %} {% endif %}
{% if is_editable %}{% include "./edit_panel.html" %}{% endif %}

Curriculum Vitae

{% include identity.templates.main %} {% include about.templates.main %} {% if db_plugins %} {% load plugin_tags %} {% for plugin in db_plugins %} {% render_template_string plugin.templates.string_templates.main %} {% endfor %} {% endif %} {% include freelance_timeline.templates.main with timeline=freelance_timeline page_break_before=False %} {% include employed_timeline.templates.main with timeline=employed_timeline page_break_before=True %} {% include education.templates.main %} {% include skills.templates.main %} {% include projects.templates.main with projects=projects %}
{% if show_edit_button %} {% endif %} {% endblock body %}