{# Resume page delivery template. Renders the validated ResumeData (passed as `resume`) as semantic HTML with inline schema.org microdata (itemscope / itemprop) plus a JSON-LD {% endblock %} {% block content %}

{{ page.title }}

{% if resume.header.tagline %}

{{ resume.header.tagline }}

{% endif %} {% if resume.header.location %}

{{ resume.header.location }}

{% endif %} {% if resume.header.profile_links %} {% endif %}
{% if page.body_html %}

Summary

{{ page.body_html | internal_link_rewrite | unsplash_credit_wrap | pictureify | safe }}
{% endif %} {% if resume.highlights %}

Highlights

{% endif %} {% if resume.experience %}

Experience

{% for pos in resume.experience %}

{% if resume.lead_with_role %} {{ pos.role }}{{ pos.company }} {% else %} {{ pos.company }}{{ pos.role }} {% endif %}

{% if pos.location %}{{ pos.location }} · {% endif %} {% if pos.start_date %}{% endif %} {% if pos.start_date or pos.end_date %} – {% endif %} {% if pos.end_date %} {% elif pos.start_date %} Present {% endif %}

{% if pos.description_markdown %} {{ pos.description_markdown | render_markdown | safe }} {% endif %} {% if pos.impacts %}
    {% for i in pos.impacts %}
  • {{ i }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if resume.projects %}

Projects

{% for proj in resume.projects %}

{% if proj.url %}{% else %}{{ proj.name }}{% endif %} {% set linked = resume | linked_position(proj.linked_position_id) %} {% if linked %} at {{ linked.company }} {% endif %}

{% if proj.role or proj.location or proj.start_date or proj.end_date %}

{% if proj.role %}{{ proj.role }} · {% endif %} {% if proj.location %}{{ proj.location }} · {% endif %} {% if proj.start_date %}{% endif %} {% if proj.start_date or proj.end_date %} – {% endif %} {% if proj.end_date %} {% elif proj.start_date %}Present{% endif %}

{% endif %} {% if proj.description_markdown %} {{ proj.description_markdown | render_markdown | safe }} {% endif %} {% if proj.impacts %}
    {% for i in proj.impacts %}
  • {{ i }}
  • {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if resume.education %}

Education

{% for edu in resume.education %}

{{ edu.institution }} — {{ edu.degree }}

{% if edu.location or edu.start_date or edu.end_date %}

{% if edu.location %}{{ edu.location }}{% endif %} {% if edu.start_date %}{% if edu.location %} · {% endif %}{% endif %} {% if edu.start_date or edu.end_date %} – {% endif %} {% if edu.end_date %}{% endif %}

{% endif %}
{% endfor %}
{% endif %} {% if resume.skills %}

Skills

{% for group in resume.skills %}
{{ group.group_label }}
{{ group.items | join(', ') }}
{% endfor %}
{% endif %} {% if resume.certifications %}

Certifications

{% endif %} {% if resume.languages %}

Languages

{% endif %}
{% endblock %}