From 953dc5ef8652a0b7e8ae2c7db3535f1bd157cdd4 Mon Sep 17 00:00:00 2001 From: jwansek Date: Tue, 16 May 2023 14:11:51 +0100 Subject: Added alt text, docker --- src/templates/index.html.j2 | 16 +++++++ src/templates/plot.html.j2 | 8 ++++ src/templates/search.html.j2 | 16 +++++++ src/templates/template.html.j2 | 95 ++++++++++++++++++++++++++++++++++++++++++ 4 files changed, 135 insertions(+) create mode 100644 src/templates/index.html.j2 create mode 100644 src/templates/plot.html.j2 create mode 100644 src/templates/search.html.j2 create mode 100644 src/templates/template.html.j2 (limited to 'src/templates') diff --git a/src/templates/index.html.j2 b/src/templates/index.html.j2 new file mode 100644 index 0000000..68f9837 --- /dev/null +++ b/src/templates/index.html.j2 @@ -0,0 +1,16 @@ +{% extends "template.html.j2" %} +{% block content %} +
+ +
+{% endblock %} \ No newline at end of file diff --git a/src/templates/plot.html.j2 b/src/templates/plot.html.j2 new file mode 100644 index 0000000..56f5e87 --- /dev/null +++ b/src/templates/plot.html.j2 @@ -0,0 +1,8 @@ +{% extends "template.html.j2" %} +{% block content %} +
+
+
+

{{ alt }}

+
+{% endblock %} \ No newline at end of file diff --git a/src/templates/search.html.j2 b/src/templates/search.html.j2 new file mode 100644 index 0000000..4de432c --- /dev/null +++ b/src/templates/search.html.j2 @@ -0,0 +1,16 @@ +{% extends "template.html.j2" %} +{% block content %} + +{% endblock %} \ No newline at end of file diff --git a/src/templates/template.html.j2 b/src/templates/template.html.j2 new file mode 100644 index 0000000..02da03a --- /dev/null +++ b/src/templates/template.html.j2 @@ -0,0 +1,95 @@ + + + + + UK Gender Pay Gap :: {{ title }} + + + + + + + + + + + + + + + + + + + + + +
+

{{ title }}

+

Data provided by the UK Government and the Office for National Statistics

+
+ + + +
+ {% block content %} + {% endblock %} +
+ + + \ No newline at end of file -- cgit v1.2.3