changes on homepage for the animated banner
This commit is contained in:
parent
cf06321056
commit
f7fa411bcf
@ -35,23 +35,6 @@ sparql3 = SPARQLWrapper("https://query.daap.bannerrepeater.org/proxy/wdqs/bigdat
|
|||||||
# # # # # # # # # # # # # # # # # # # # # # # #
|
# # # # # # # # # # # # # # # # # # # # # # # #
|
||||||
@app.route("/")
|
@app.route("/")
|
||||||
def home():
|
def home():
|
||||||
# this doesn't show any results yet because I just added the data and I guess the query builder needs to be reloaded again, but the query code should work correctly.
|
|
||||||
# sparql.setQuery('''
|
|
||||||
# SELECT ?work ?workLabel ?image ?date ?dateadded
|
|
||||||
# WHERE {
|
|
||||||
# SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
|
|
||||||
# ?work wdt:P1 wd:Q1;
|
|
||||||
# wdt:P87 ?dateadded.
|
|
||||||
# OPTIONAL { ?work wdt:P30 ?image. }
|
|
||||||
# OPTIONAL { ?work wdt:P13 ?date. }
|
|
||||||
# FILTER(?work != wd:Q57)
|
|
||||||
# }
|
|
||||||
# ORDER BY (?dateadded)
|
|
||||||
# LIMIT 24
|
|
||||||
# ''')
|
|
||||||
# sparql.setReturnFormat(JSON)
|
|
||||||
# results = sparql.query().convert()
|
|
||||||
# return render_template('home.html', results=results)
|
|
||||||
sparql.setQuery('''
|
sparql.setQuery('''
|
||||||
SELECT ?work ?workLabel ?image ?date WHERE {
|
SELECT ?work ?workLabel ?image ?date WHERE {
|
||||||
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
|
SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],en". }
|
||||||
@ -66,6 +49,7 @@ ORDER BY (?workLabel)
|
|||||||
''')
|
''')
|
||||||
sparql.setReturnFormat(JSON)
|
sparql.setReturnFormat(JSON)
|
||||||
results = sparql.query().convert()
|
results = sparql.query().convert()
|
||||||
|
ImagesBanner = []
|
||||||
# print(results)
|
# print(results)
|
||||||
for publication in results["results"]["bindings"]:
|
for publication in results["results"]["bindings"]:
|
||||||
publication_title = publication["workLabel"]["value"]
|
publication_title = publication["workLabel"]["value"]
|
||||||
@ -75,7 +59,9 @@ ORDER BY (?workLabel)
|
|||||||
publication_date = publication["date"]["value"]
|
publication_date = publication["date"]["value"]
|
||||||
if "image" in publication:
|
if "image" in publication:
|
||||||
publication_image = publication["image"]["value"]
|
publication_image = publication["image"]["value"]
|
||||||
return render_template('home.html', results=results)
|
ImagesBanner.append(publication_image)
|
||||||
|
ImagesBanner = ImagesBanner[-3:]
|
||||||
|
return render_template('home.html', results=results, ImagesBanner=ImagesBanner)
|
||||||
|
|
||||||
|
|
||||||
@app.route("/browsethearchive")
|
@app.route("/browsethearchive")
|
||||||
|
@ -1,14 +1,41 @@
|
|||||||
{% extends "layout.html" %}
|
{% extends "layout.html" %}
|
||||||
{% block content %}
|
{% block content %}
|
||||||
|
|
||||||
<div id="home-top-div"></div>
|
<!-- BANNER -->
|
||||||
|
|
||||||
|
<!--
|
||||||
|
* It needs a place holder for video (I think Lozana will send it)
|
||||||
|
* It needs the two buttons (see zines + other thing). You can put empty a hrefs and I will add the hyperlink after.
|
||||||
|
* I have retrieved an array from the last images added (3 currently).
|
||||||
|
- If you need more images tell me and I will modify the python script, this would be super easy
|
||||||
|
- Feel free to add the classs/ids of your choice.
|
||||||
|
- I was unsure also if you needed each image to have a different class but I have improvised something to do so. Once the app is serving you can see 3 different classes : banner-image-0, banner-image-1, banner-image-2
|
||||||
|
-->
|
||||||
|
|
||||||
|
<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 -->
|
||||||
|
|
||||||
|
|
||||||
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
<!-- PUBLICATIONS -->
|
||||||
|
|
||||||
<div id="home-recently-added-works">
|
<div id="home-recently-added-works">
|
||||||
<div class="pagetitle" id="home-recent-title">RECENTLY ADDED WORKS</div>
|
<div class="pagetitle" id="home-recent-title">RECENTLY ADDED WORKS</div>
|
||||||
|
|
||||||
<div id="home-recent-grid">
|
<div id="home-recent-grid">
|
||||||
|
|
||||||
|
<!-- LOOP TO GET LAST ADDED ITEMS -->
|
||||||
{% for x in results['results']['bindings']%}
|
{% 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">
|
||||||
<div class="home-recent-items-top">
|
<div class="home-recent-items-top">
|
||||||
{% if "image" in x %}
|
{% if "image" in x %}
|
||||||
@ -36,6 +63,7 @@
|
|||||||
|
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
<!-- END LOOP -->
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user