{# 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 %} {% endif %} {% if linkedin %} {% endif %} {% if github %} {% endif %}
{% for section_title, entries in body.items() %}

{{ section_title }}

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

Skills

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