{# NOTE: autoescape is disabled because resume content uses Markdown-generated HTML. Input is trusted (user's own YAML files). Do not use with untrusted input. #} {%- extends "html/resume_base.html" -%} {% block styles %} {% endblock %} {% block content %}

{{ full_name }}

{% if description %}
{{ description }}
{% endif %}
{% if email %} {{ email }} {% endif %} {% if phone %} {{ phone }} {% endif %} {% if address %} {{ address | join(', ') }} {% endif %}
{% if web %} {{ web }} {% endif %} {% if linkedin %} LinkedIn {% endif %} {% if github %} GitHub {% endif %}
{% for section_title, entries in body.items() %}

{{ section_title }}

{% for entry in entries %}
{% if entry.title %}
{{ entry.title }}
{% endif %} {% if entry.company or entry.school or entry.start or entry.end %} {% endif %} {% if entry.description %}
{% autoescape false %} {{ entry.description }} {% endautoescape %}
{% endif %}
{% endfor %}
{% endfor %} {% if keyskills or expertise %}

Skills & Expertise

{% if keyskills %} {% for skill in keyskills %}
{{ skill }}
{% endfor %} {% endif %} {% if expertise %} {% for exp in expertise %}
{{ exp }}
{% endfor %} {% endif %}
{% endif %}
{% endblock %}