summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorDaniel Friesel <derf@finalrewind.org>2021-08-21 11:35:43 +0200
committerDaniel Friesel <derf@finalrewind.org>2021-08-21 11:35:43 +0200
commit8a04cf20c5d6dc577a7de7745cbeb292bf78529d (patch)
treeabec0b23651b13988630486f63977f3018d463d9 /templates
parent73cbb842a4815a36e03d9e0c7243effd568c7bfd (diff)
asset version management
Diffstat (limited to 'templates')
-rw-r--r--templates/header.html4
-rw-r--r--templates/landing_page.html2
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/header.html b/templates/header.html
index 1bf6219..7480bea 100644
--- a/templates/header.html
+++ b/templates/header.html
@@ -10,11 +10,11 @@
<link rel="apple-touch-icon" sizes="180x180" href="/static/icons/icon-180x180.png">
<link rel="apple-touch-icon" sizes="152x152" href="/static/icons/icon-152x152.png">
<link rel="apple-touch-icon" sizes="167x167" href="/static/icons/icon-167x167.png">
-<link href="/static/v0/css/light.min.css" id="theme" rel="stylesheet">
+<link href="/static/v1/css/light.min.css" id="theme" rel="stylesheet">
<script>
function addStyleSheet(name, id) {
- const path = "/static/v0/css/" + name + ".min.css";
+ const path = "/static/v1/css/" + name + ".min.css";
const old = document.getElementById(id);
if (old && (old.href != path)) {
old.href = path;
diff --git a/templates/landing_page.html b/templates/landing_page.html
index 0137cd6..815e628 100644
--- a/templates/landing_page.html
+++ b/templates/landing_page.html
@@ -3,7 +3,7 @@
<head>
<title>{{ title }}</title>
{% include 'header.html' %}
- <script src="/static/v0/js/geolocation.js"></script>
+ <script src="/static/v1/js/geolocation.js"></script>
</head>
<body>
{% include 'navbar.html' %}