{% extends "./base.html" %} {% load static %} {% block title %}{{ identity.name }} - CV{% endblock title %} {% block meta %} {{ block.super }} {% endblock meta %} {% block content %} {% if is_editable %} {% include "django_resume/pages/headwind/edit_panel.html" %} {% endif %}
{% 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 %} {% if freelance_timeline %}
{% include freelance_timeline.templates.main with timeline=freelance_timeline page_break_before=False %}
{% endif %} {% if employed_timeline %}
{% include employed_timeline.templates.main with timeline=employed_timeline page_break_before=True %}
{% endif %} {% if education %}
{% include education.templates.main %}
{% endif %} {% if skills %}
{% include skills.templates.main %}
{% endif %} {% if projects %}
{% include projects.templates.main with projects=projects %}
{% endif %}
{% endblock content %}