aboutsummaryrefslogtreecommitdiffstats
path: root/templates/template.html.j2
diff options
context:
space:
mode:
authorjwansek <eddie.atten.ea29@gmail.com>2023-04-28 12:03:19 +0100
committerjwansek <eddie.atten.ea29@gmail.com>2023-04-28 12:03:19 +0100
commit43ba613b9e1ea9dbf6f94361d43418c91c8c0785 (patch)
tree4c327162e72e49ff549bfb77e77f047f99e005b9 /templates/template.html.j2
parenta90ca1f2b50d343d0d2d0d3bda2ecf7712726419 (diff)
downloadUKGenderPayGap-43ba613b9e1ea9dbf6f94361d43418c91c8c0785.tar.gz
UKGenderPayGap-43ba613b9e1ea9dbf6f94361d43418c91c8c0785.zip
Finished insinuations, started on HTML and CSS
Diffstat (limited to 'templates/template.html.j2')
-rw-r--r--templates/template.html.j244
1 files changed, 44 insertions, 0 deletions
diff --git a/templates/template.html.j2 b/templates/template.html.j2
new file mode 100644
index 0000000..1fb238d
--- /dev/null
+++ b/templates/template.html.j2
@@ -0,0 +1,44 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+ <title>UK Gender Pay Gap :: {{ title }}</title>
+ <!-- JQuery and JQurty UI current version -->
+ <script src='https://code.jquery.com/jquery-3.6.0.js'></script>
+ <script src="https://code.jquery.com/ui/1.13.1/jquery-ui.js"></script>
+
+ <!-- Highcharts libraries -->
+ <script type="text/javascript" src="https://code.highcharts.com/highcharts.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/highcharts-more.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/exporting.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/export-data.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/modules/accessibility.js"></script>
+
+ <script type="text/javascript" src="https://code.highcharts.com/maps/modules/map.js"></script>
+ <script type="text/javascript" src="https://code.highcharts.com/mapdata/custom/world-robinson.js"></script>
+
+ <!-- local Javascript files -->
+ <script type="text/javascript" src="{{ url_for('static', filename='scripts.js') }}"></script>
+ <!-- remote and local CSS stylesheet -->
+ <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
+</head>
+
+<body>
+ <header>
+ <h1>{{ title }}</h1>
+ <p>Data provided by the <a href="https://gender-pay-gap.service.gov.uk/">UK Government</a></p>
+ </header>
+
+ <aside>
+ <h4>Filter...</h4>
+ </aside>
+
+ <div id="main_content">
+ {% block content %}
+ {% endblock %}
+ </div>
+
+ <footer>
+ <p>Source code released under GPLv3</p>
+ </footer>
+</body> \ No newline at end of file