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