{% extends "pypi_profile/base.html" %} {% import "pypi_ds/components/layout.html" as layout %} {% import "pypi_ds/components/navigation.html" as navigation %} {% import "pypi_profile/components.html" as pc %} {% block profile_title %}Resume{% endblock %} {% block content %} {{ pc.profile_header(profile) }} {% call layout.horizontal_section("horizontal-section--grey horizontal-section--thin") %}

Career history for {{ profile.profile.display_name or profile.identity.display_name }}

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("Work experience", "project-panel") %} {% if profile.work_experience %}
{% for entry in profile.work_experience %} {{ pc.work_entry(entry) }} {% endfor %}
{% else %}

No work experience listed.

{% endif %} {% endcall %} {% if profile.packages %} {% call layout.card("Package portfolio", "project-panel") %}
{% for pkg in profile.packages[:5] %} {{ pc.package_card(pkg) }} {% endfor %}
{% if profile.packages | length > 5 %}

View all {{ profile.packages | length }} packages →

{% endif %} {% endcall %} {% endif %} {% if profile.projects %} {% call layout.card("Projects", "project-panel") %}
{% for proj in profile.projects[:5] %} {{ pc.project_card(proj) }} {% endfor %}
{% if profile.projects | length > 5 %}

View all {{ profile.projects | length }} projects →

{% endif %} {% endcall %} {% endif %}
{% endcall %} {% endblock %}