|
|
@ -43,28 +43,34 @@ |
|
|
|
<!-- ARTWORK IMAGES --> |
|
|
|
<!-- removed artwork-about-img + on img artwork-about-imgs --> |
|
|
|
<div class="my-slider"> |
|
|
|
|
|
|
|
|
|
|
|
{% if artworkimages['results']['bindings']==[] %} |
|
|
|
<img class="item" src="{{ url_for('static', filename='/imgs/Icons/placeholder_no-image2.png') }}"> |
|
|
|
<img src="{{ url_for('static', filename='/imgs/Icons/placeholder_no-image2.png') }}"> |
|
|
|
{% else %} |
|
|
|
|
|
|
|
{% for x in artworkimages['results']['bindings'] |reverse %} |
|
|
|
|
|
|
|
<div class="item"> |
|
|
|
<!-- START GROUP IMG + LABELS --> |
|
|
|
{% if "image" in x %} |
|
|
|
<img class="item" src='{{ x["image"]["value"] | replace("wiki/File:","wiki/Special:Redirect/file/") }}'> |
|
|
|
<img src='{{ x["image"]["value"] | replace("wiki/File:","wiki/Special:Redirect/file/") }}'> |
|
|
|
<!-- copyright and front or back --> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if "depictsLabel" in x %} |
|
|
|
<span>{{ x['depictsLabel']['value'] }}</span> |
|
|
|
<p>{{ x['depictsLabel']['value'] }}</p> |
|
|
|
{% endif %} |
|
|
|
|
|
|
|
{% if "licenseLabel" in x %} |
|
|
|
<span>{{ x['licenseLabel']['value'] }}</span> |
|
|
|
<p>{{ x['licenseLabel']['value'] }}</p> |
|
|
|
{% endif %} |
|
|
|
<!-- END GROUP IMG + LABELS --> |
|
|
|
|
|
|
|
</div> |
|
|
|
{% endfor %} |
|
|
|
|
|
|
|
{% endif %} |
|
|
|
|
|
|
|
|
|
|
|
</div> |
|
|
|
|
|
|
|
|
|
|
|