{# display & link IIIF manifest license and provider logo #}
{% load static mep_tags %}
{# logo for IIIF provider of digitized item #}
{% if manifest.logo %}
{# link to findingaids version via rendering url in extra data #}
{% with manifest.extra_data.rendering|yesno:"a,span" as tag %}
<{{ tag }} {% if tag == "a" %} href="{{ manifest.extra_data.rendering|dict_item:"@id" }}" target="_blank" {% endif %}>
{{ tag }}>
{% endwith %}
{% endif %}
{# for now, only supports rightsstatments.org licenses (should work for PUL content) #}
{% if manifest.license %}
{% endif %}