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

{{ profile.profile.summary }}

{% endcall %} {% call layout.horizontal_section() %}
{% call layout.card("About", "project-panel") %}

{{ profile.profile.summary }}

{% if profile.identity.pypi_username %}

PyPI username: {{ profile.identity.pypi_username }}

{% endif %} {% if profile.identity.timezone %}

Timezone: {{ profile.identity.timezone }}

{% endif %} {% if profile.identity.pronouns %}

Pronouns: {{ profile.identity.pronouns }}

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

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

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