From 410c5211a558de7d50356262e489dc5be0b7e7ff Mon Sep 17 00:00:00 2001 From: zeroth Date: Mon, 26 Jul 2021 18:21:14 +0100 Subject: [PATCH] oldest newest support templates --- templates/newestindex.html | 149 +++++++++++++++++++++++++++++++++++++ templates/oldestindex.html | 149 +++++++++++++++++++++++++++++++++++++ templates/support.html | 12 +++ 3 files changed, 310 insertions(+) create mode 100644 templates/newestindex.html create mode 100644 templates/oldestindex.html create mode 100644 templates/support.html diff --git a/templates/newestindex.html b/templates/newestindex.html new file mode 100644 index 0000000..bb19d62 --- /dev/null +++ b/templates/newestindex.html @@ -0,0 +1,149 @@ +{% extends "layout.html" %} +{% block content %} + +
+
INDEX BY DATE FROM NEWEST
+ +
+ +{% for x in results['results']['bindings']%} +
+
+ {% if "image" in x %} + + +
+ {% else %} + +
+
+ {% endif %} +
+ +
+ + {{ x["workLabel"]["value"]}} +
+ + {% if "date" in x %} + {{ x["date"]["value"] | replace("T00:00:00Z", "") }} + + + {% endif %} +
+ +
+{% endfor %} + +
+ + + + + + + +
+ + +{% endblock content %} + + + diff --git a/templates/oldestindex.html b/templates/oldestindex.html new file mode 100644 index 0000000..8c1a109 --- /dev/null +++ b/templates/oldestindex.html @@ -0,0 +1,149 @@ +{% extends "layout.html" %} +{% block content %} + +
+
INDEX BY DATE FROM OLDEST
+ +
+ +{% for x in results['results']['bindings']%} +
+
+ {% if "image" in x %} + + +
+ {% else %} + +
+
+ {% endif %} +
+ +
+ + {{ x["workLabel"]["value"]}} +
+ + {% if "date" in x %} + {{ x["date"]["value"] | replace("T00:00:00Z", "") }} + + + {% endif %} +
+ +
+{% endfor %} + +
+ + + + + + + +
+ + +{% endblock content %} + + + diff --git a/templates/support.html b/templates/support.html new file mode 100644 index 0000000..e4b639c --- /dev/null +++ b/templates/support.html @@ -0,0 +1,12 @@ +{% extends "layout.html" %} +{% block content %} + +{{ text }} + + + +{% endblock content %} \ No newline at end of file