JoBCB
4 years ago
3 changed files with 122 additions and 50 deletions
@ -1,35 +1,90 @@ |
|||||
{% extends "layout.html" %} |
{% extends "layout.html" %} |
||||
{% block content %} |
{% block content %} |
||||
|
|
||||
<!-- <div id="artwork-description"> |
<div> |
||||
<div id="artwork-page-title">ARTWORK</div> |
|
||||
<div id="artwork-title">WHATEVER</div> |
<!-- Artwork title and navigation --> |
||||
<div id="artwork-short-description"></div> |
<div></div> |
||||
</div> |
|
||||
<div id="artwork-content"> |
<!-- The content in 3 divs displayed or not (detailed revord is out)--> |
||||
<div id="artwork-content-menu"> |
<div> |
||||
<div id="artwork-content-menu-about">About this work</div> |
<!-- about --> |
||||
<div id="artwork-content-menu-record">Detailed record</div> |
<div></div> |
||||
<div id="artwork-content-menu-relationships">Relationships</div> |
|
||||
<div id="artwork-content-menu-lists">Lists</div> |
<!-- relationships --> |
||||
|
<div></div> |
||||
|
|
||||
|
<!-- lists --> |
||||
|
<div></div> |
||||
|
|
||||
|
|
||||
</div> |
</div> |
||||
<div id="artwork-content-infos"> |
|
||||
|
|
||||
|
<!-- copies in collections --> |
||||
|
<div> |
||||
|
<div>Copies in collections</div> |
||||
|
<!-- all the copies if any --> |
||||
|
{% for x in copiesincollection['results']['bindings'] %} |
||||
|
<div class="artwork-copiesincollection"> |
||||
|
<!-- img --> |
||||
|
<div class="artwork-copiesincollection-img-div"> |
||||
|
{% if "image" in x %} |
||||
|
<!-- <a href='/artwork?id={{ x["???"]["copiesCollections"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'> --> |
||||
|
<img class="artwork-copiesincollection-imgs" src='{{ x["image"]["value"] | replace("wiki/File:","wiki/Special:Redirect/file/") }}'> |
||||
|
<!-- </a> --> |
||||
|
<br> |
||||
|
{% else %} |
||||
|
<!-- <a href='/artwork?id={{ x["copiesCollections"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'> --> |
||||
|
<img class="artwork-copiesincollection-imgs" src="{{ url_for('static', filename='/imgs/Icons/placeholder_no-image2.png') }}"> |
||||
|
<!-- </a> --> |
||||
|
<br> |
||||
|
{% endif %} |
||||
|
</div> |
||||
|
<!-- title/name of collection --> |
||||
|
<div class="artwork-copiesincollection-title-div"> |
||||
|
{{ x["collectionLabel"]["value"]}} |
||||
|
</div> |
||||
|
|
||||
|
</div> |
||||
|
{% endfor %} |
||||
</div> |
</div> |
||||
</div> |
|
||||
--> |
|
||||
|
|
||||
<div id="container-backend-data-button"> |
<!-- Related works --> |
||||
|
<div> |
||||
|
<div>Related works</div> |
||||
|
<!-- all the works if any--> |
||||
|
{% for x in relatedworks['results']['bindings'] %} |
||||
|
<div class="artwork-relatedworks"> |
||||
|
<!-- image --> |
||||
|
<div class="artwork-relatedworks-img-div"> |
||||
|
{% if "image" in x %} |
||||
|
<a href='/artwork?id={{ x["relatedWorks"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'> |
||||
|
<img class="artwork-relatedworks-imgs" src='{{ x["image"]["value"] | replace("wiki/File:","wiki/Special:Redirect/file/") }}'> |
||||
|
</a> |
||||
|
<br> |
||||
|
{% else %} |
||||
|
<a href='/artwork?id={{ x["relatedWorks"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'> |
||||
|
<img class="artwork-relatedworks-imgs" src="{{ url_for('static', filename='/imgs/Icons/placeholder_no-image2.png') }}"> |
||||
|
</a> |
||||
|
<br> |
||||
|
{% endif %} |
||||
|
</div> |
||||
|
<!-- title --> |
||||
|
<div class="artwork-relatedworks-tile"> |
||||
|
{{ x["relatedWorksLabel"]["value"]}} |
||||
|
</div> |
||||
|
<!-- year --> |
||||
|
<div class="artwork-relatedworks-date"> |
||||
|
{% if "daterelatedWorks" in x %} |
||||
|
{{ x["daterelatedWorks"]["value"] | replace("T00:00:00Z", "") }} |
||||
|
{% endif %} |
||||
|
</div> |
||||
|
</div> |
||||
|
{% endfor %} |
||||
|
</div> |
||||
|
|
||||
|
|
||||
<a target="_blank" href="https://daap.bannerrepeater.org/wiki/Item:{{ artwork_id }}"> |
|
||||
<div class="bluebutton" id="backend-data-button"> |
|
||||
<span>Go to backend to see live data</span> |
|
||||
</div> |
|
||||
</a> |
|
||||
|
|
||||
</div> |
</div> |
||||
|
|
||||
<img class="artwork-mockuppage" src="{{ url_for('static', filename='/imgs/Pages/mockup_page_artwork-min.jpg') }}"> |
|
||||
|
|
||||
{% endblock content %} |
{% endblock content %} |
Loading…
Reference in new issue