diff --git a/templates/file.html b/templates/file.html index c90b493..a8bdc24 100644 --- a/templates/file.html +++ b/templates/file.html @@ -1,7 +1,8 @@ {% from "image.html" import image %} {% extends "images.html" %} +{% block title %}{{ image_title }} – {{ super() }}{% endblock title %} {% block main %}
{{ image(image_title, image_attribution, image_url, depicteds, heading="h1") }}
{% endblock main %} diff --git a/templates/item.html b/templates/item.html index 0439bb1..5f20ed3 100644 --- a/templates/item.html +++ b/templates/item.html @@ -1,8 +1,9 @@ {% from "image.html" import image %} {% extends "images.html" %} +{% block title %}{{ label.value }} – {{ super() }}{% endblock title %} {% block main %}

{{ item_link(entity_id, label) }}

{{ image(image_title, image_attribution, image_url, depicteds) }}
{% endblock main %}