{% extends 'base.html' %} {% load static i18n render_bundle_csp fullurl %} {% block meta_title %}{{ page_title }}{% endblock meta_title %} {% block meta_description %}{{ page_description }}{% endblock meta_description %} {% block extrameta %} {# use English page as canonical for search engine crawlers (no redirects) #} {% language "en" %} {% endlanguage %} {% spaceless %} {% for lang_code in PUBLIC_SITE_LANGUAGES %} {% language lang_code %} {% endlanguage %} {% endfor %} {% endspaceless %} {% endblock extrameta %} {% block main %} {% include "entities/snippets/person_header.html" %} {# tabs #} {% include "entities/snippets/person_tabs.html" %}

{# Translators: label for person metadata section #} {% translate 'Metadata' %}

{# metadata #} {# secondary metadata #}
{% if person.description %}

{# Translators: label for person description / bio #} {% translate 'Description / Bio' %}

{{ person.description }}

{% endif %} {% if person.events.all|length %}

{# Translators: label for person's life events timeline #} {% translate 'Life events' %}

    {% for event in person.events.all %}
  1. {{ event.name }} {% if event.date_str %}(){% endif %}

    {% if event.description %}

    {{ event.description }}

    {% endif %} {% if event.documents.exists %}

    {% for doc in event.documents.all %} {{ doc }}{% if not forloop.last %}, {% endif %} {% endfor %}

    {% endif %}
  2. {% endfor %}
{% endif %} {% if person.footnotes.all|length %}

{# Translators: label for person bibliography #} {% translate 'Select bibliography' %}

    {% for footnote in person.footnotes.all %}
  1. {{ footnote.source.formatted_display|safe }}
  2. {% endfor %}
{% endif %} {# tertiary metadata #}
{# Translators: accessibility label for a citation for a person #} {{ person.formatted_citation }}
{# Translators: accessibility label for permanent link to a person #} {{ person.permalink }}
{% endblock main %}