aboutsummaryrefslogtreecommitdiff
path: root/src/templates/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'src/templates/base.html')
-rw-r--r--src/templates/base.html24
1 files changed, 24 insertions, 0 deletions
diff --git a/src/templates/base.html b/src/templates/base.html
new file mode 100644
index 0000000..2844f62
--- /dev/null
+++ b/src/templates/base.html
@@ -0,0 +1,24 @@
+<!DOCTYPE html>
+<html lang="en">
+<head>
+ {% block head %}
+ <meta charset="UTF-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1.0">
+ <meta http-equiv="X-UA-Compatible" content="ie=edge">
+ <title>Nearest shop map</title>
+ <link rel="stylesheet" href="leaflet.css"/>
+ <link rel="stylesheet" href="main.css"/>
+ <link rel="stylesheet" href="bootstrap-5.3.3-dist/css/bootstrap.min.css">
+ <!-- Make sure you put this AFTER Leaflet's CSS -->
+ <script src="leaflet.js" defer></script>
+ <script src="leaflet-heat.js" defer></script>
+ <script src="main.js" defer></script>
+ {% endblock %}
+</head>
+<body>
+
+{% block body %}
+{% endblock %}
+
+</body>
+</html>