Flask application repository for Banner Repeater's DAAP (Digital Archive of Artists Publishing).
SPARQL queries by Lozana Rossenova, CSS and JS by Joana Chicau, python and Jinja by Julie Boschat-Thorez.
See https://daap.network
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
2.5 KiB
90 lines
2.5 KiB
{% extends "layout.html" %}
|
|
{% block content %}
|
|
|
|
<!-- BANNER -->
|
|
|
|
|
|
<div id="home-top-div">
|
|
|
|
<!-- LOOP TO GET THE IMAGES -->
|
|
{% set count = namespace(value=0) %}
|
|
{% for img in ImagesBanner %}
|
|
<img class="banner-image-{{ count.value }}" src='{{ img | replace("wiki/File:","wiki/Special:Redirect/file/") }}'>
|
|
{% set count.value = count.value + 1 %}
|
|
{% endfor %}
|
|
<!-- END LOOPS IMAGES -->
|
|
|
|
|
|
<p class="heading_A">The Digital Archive of Artists' Publishing is an interactive, user-driven, searchable database of artists' books and publications.</p>
|
|
|
|
|
|
<div id="wrapper-bt">
|
|
<a id="wrapper-top-buttons" class="primary-button" href="{{ url_for('browsethearchive') }}">BROWSE THE ARCHIVE FROM A-Z</a>
|
|
<a id="wrapper-top-buttons" class="secondary-button" href="{{ url_for('casestudy') }}">CAROLEE SCHNEEMANN CASE STUDY</a>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="scroll-down"><span>Scroll Down</span></div>
|
|
|
|
<!-- PUBLICATIONS -->
|
|
|
|
<div id="home-recently-added-works">
|
|
<div class="pagetitle" id="home-recent-title">RECENTLY ADDED WORKS</div>
|
|
|
|
<div id="home-recent-grid">
|
|
|
|
<!-- LOOP TO GET LAST ADDED ITEMS -->
|
|
{% for x in results['results']['bindings']%}
|
|
<!-- FOR EACH ITEM EXTRACT IMG, URL AND TITLE + DATE -->
|
|
<div class="home-recent-items">
|
|
<div class="home-recent-items-top">
|
|
{% if "image" in x %}
|
|
<a href='/artwork?id={{ x["work"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'>
|
|
<img class="home-recent-imgs" src='{{ x["image"]["value"] | replace("wiki/File:","wiki/Special:Redirect/file/") }}'>
|
|
</a> <br>
|
|
{% else %}
|
|
<a href='/artwork?id={{ x["work"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'>
|
|
<img class="home-recent-imgs" src="{{ url_for('static', filename='/imgs/Icons/placeholder_no-image2.png') }}"><br>
|
|
</a>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="home-recent-items-bottom">
|
|
<a class="title" href='/artwork?id={{ x["work"]["value"] | replace("http://daap.bannerrepeater.org/entity/", "") }}'>
|
|
{{ x["workLabel"]["value"]}}
|
|
</a> <br>
|
|
<span class="date">
|
|
{% if "date" in x %}
|
|
{{ x["date"]["value"][:-16] }}
|
|
{% endif %}
|
|
</span>
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
{% endfor %}
|
|
<!-- END LOOP -->
|
|
|
|
</div>
|
|
|
|
<div class="home-show-wrapper"><a href="{{ url_for('datesindex_recent') }}" class="home-show primary-button">BROWSE ALL RECENTLY ADDED</a></div>
|
|
|
|
</div>
|
|
|
|
<!--
|
|
|
|
post_wrap =
|
|
home-recent-grid
|
|
|
|
pst =
|
|
home-recent-items
|
|
|
|
-->
|
|
|
|
<!-- RECENTLY ADDED ITEMS SCRIPT -->
|
|
|
|
<script src="{{ url_for('static', filename='/js/scripts.js') }}" type="text/javascript"></script>
|
|
|
|
|
|
{% endblock content %}
|