From f0626b175d21230dc68ecd83e2726ec7e7daae5a Mon Sep 17 00:00:00 2001 From: user Date: Mon, 20 May 2024 19:51:41 +0200 Subject: user input categories, refactor, remove zombie code --- src/templates/base.html | 24 ++++++++++++++++++++++++ src/templates/index.html | 14 ++++++++++++++ src/templates/options.html | 21 +++++++++++++++++++++ 3 files changed, 59 insertions(+) create mode 100644 src/templates/base.html create mode 100644 src/templates/index.html create mode 100644 src/templates/options.html (limited to 'src/templates') 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 @@ + + + + {% block head %} + + + + Nearest shop map + + + + + + + + {% endblock %} + + + +{% block body %} +{% endblock %} + + + diff --git a/src/templates/index.html b/src/templates/index.html new file mode 100644 index 0000000..f97ae53 --- /dev/null +++ b/src/templates/index.html @@ -0,0 +1,14 @@ +{% extends "base.html" %} + +{% block body %} +
+
+
+ {% include 'options.html' %} +
+
+
+
+
+
+{% endblock %} \ No newline at end of file diff --git a/src/templates/options.html b/src/templates/options.html new file mode 100644 index 0000000..8f2d43a --- /dev/null +++ b/src/templates/options.html @@ -0,0 +1,21 @@ +

POI map

+
+ + {# Value set to empty string is important for JS function #} + + + +
Change the category shown on the map
+ e.g. supermarket, toilet, or swingerclub
+ +
+ + + +

+ + Read more, and find the source code here: POI map - git.node5.net + +
+ -- cgit v1.2.3