{% extends "public/base.html" %} {% block title %}{{ artist.first_name }} {{ artist.last_name }} — {{ gallery.public_name or gallery.name }}{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{{ _("Artist") }}
{{ artist.first_name }} {{ artist.last_name }}
{% if artist.nationality %}{{ artist.nationality }}{% endif %} {% if artist.birth_year %} · b. {{ artist.birth_year }}{% if artist.death_year %} – {{ artist.death_year }}{% endif %}{% endif %}
{{ _("Works") }} {{ _("Exhibitions") }} {{ _("Biography") }}
{% if artworks %}
{% for aw in artworks %} {% set img = aw.images[0] if aw.images else none %}
{% if img and img.iiif_url %} {{ aw.title }} {% else %}
{% endif %}
{{ aw.title }}
{{ aw.year_from or "" }}
{% endfor %}
{% else %}

No works currently available.

{% endif %}
{% if exhibitions %} {% for ex in exhibitions %}
{{ ex.title }}
{% if ex.venue %}{{ ex.venue }} · {% endif %} {% if ex.start_date %}{{ ex.start_date.strftime("%Y") }}{% endif %}
{% endfor %} {% else %}

No exhibition history.

{% endif %}
{% set bio, bio_lang = get_trans(artist, "biography") %} {% if bio %} {{ bio|nl2br }} {% else %}

Biography not available.

{% endif %}
{% if artist.artist_website %}
Artist Website
{% endif %}
{% endblock %}