summaryrefslogtreecommitdiff
path: root/templ
diff options
context:
space:
mode:
authorRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-03 23:46:09 +0200
committerRené 'Necoro' Neumann <necoro@necoro.eu>2024-10-03 23:46:09 +0200
commite79d3d7163657f7a540530dddb319f984885e864 (patch)
treecb2fab170b7dd10b7b04b8f3122fe2324ae00c4f /templ
parent21290e1af5a5674b39bd34ebd4cb5cd403b7b5bb (diff)
downloadgosten-e79d3d7163657f7a540530dddb319f984885e864.tar.gz
gosten-e79d3d7163657f7a540530dddb319f984885e864.tar.bz2
gosten-e79d3d7163657f7a540530dddb319f984885e864.zip
Don't defer loading JS to avoid jumpy rendering
Diffstat (limited to 'templ')
-rw-r--r--templ/base.tpl2
1 files changed, 1 insertions, 1 deletions
diff --git a/templ/base.tpl b/templ/base.tpl
index c96f2a9..7e42630 100644
--- a/templ/base.tpl
+++ b/templ/base.tpl
@@ -7,7 +7,7 @@
<title>{{block "title" .}}Kosten{{end}}</title>
<link href="/static/custom.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
- <script defer src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
+ <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
{{block "head" .}}{{end}}
</head>
<body>