diff options
author | Daniel Schadt <kingdread@gmx.de> | 2023-05-25 20:15:36 +0200 |
---|---|---|
committer | Daniel Schadt <kingdread@gmx.de> | 2023-05-25 20:15:36 +0200 |
commit | 77680068c3fe5d794f5a054126bc40cc4b01222a (patch) | |
tree | 4831e5f1578908575a0e24408c1c6cce49080795 | |
parent | a51da4c06db5f0f0222486998ca7eb2974a2841c (diff) | |
download | fietsboek-77680068c3fe5d794f5a054126bc40cc4b01222a.tar.gz fietsboek-77680068c3fe5d794f5a054126bc40cc4b01222a.tar.bz2 fietsboek-77680068c3fe5d794f5a054126bc40cc4b01222a.zip |
fix script inclusion
For some reason we forgot the end tag there, which broke the inclusion
of the next script, which then broke our custom layers (and the
tileproxy!).
Maybe we should also add some tests for the proxy 😏
-rw-r--r-- | fietsboek/templates/layout.jinja2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fietsboek/templates/layout.jinja2 b/fietsboek/templates/layout.jinja2 index b6fcea0..fcc9d95 100644 --- a/fietsboek/templates/layout.jinja2 +++ b/fietsboek/templates/layout.jinja2 @@ -117,7 +117,7 @@ const Legende = false; <!-- Placed at the end of the document so the pages load faster --> <script src="{{request.static_url('fietsboek:static/bootstrap.bundle.min.js')}}"></script> <!-- Pre-load leaflet Javascript. This lets us use Leaflet on any page, without relying on GPXViewer to load it --> - <script src="{{request.static_url('fietsboek:static/GM_Utils/leaflet/leaflet.js')}}"> + <script src="{{request.static_url('fietsboek:static/GM_Utils/leaflet/leaflet.js')}}"></script> <!-- Our patch to the GPX viewer, load before the actual GPX viewer --> <script src="{{request.static_url('fietsboek:static/osm-monkeypatch.js')}}"></script> <!-- Jürgen Berkemeier's GPX viewer --> |