mirror of
https://github.com/Theodor-Springmann-Stiftung/musenalm.git
synced 2025-10-29 09:15:33 +00:00
more refactoring of <head>; login -> alpine ajax
This commit is contained in:
38
views/layouts/components/_head.gohtml
Normal file
38
views/layouts/components/_head.gohtml
Normal file
@@ -0,0 +1,38 @@
|
||||
{{ $model := . }}
|
||||
|
||||
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="htmx-config" content='{"defaultSwapStyle":"outerHTML", "scrollBehavior": "instant"}' />
|
||||
|
||||
{{ if $model.isDev }}
|
||||
<link rel="icon" href="/assets/logo/dev_favicon.png" />
|
||||
<meta name="robots" content="noindex" />
|
||||
{{ else }}
|
||||
{{ if $model.url }}
|
||||
<link rel="canonical" href="{{ $model.url }}" />
|
||||
{{ end }}
|
||||
<link rel="icon" href="/assets/logo/favicon.png" />
|
||||
{{ end }}
|
||||
|
||||
|
||||
<script src="/assets/js/alpine.ajax.min.js"></script>
|
||||
<script src="/assets/js/alpine.min.js"></script>
|
||||
<script src="/assets/js/htmx.min.js"></script>
|
||||
<script src="/assets/js/htmx-response-targets.js"></script>
|
||||
<script src="/assets/js/mark.min.js" defer></script>
|
||||
|
||||
<script type="module" src="/assets/scripts.js"></script>
|
||||
<link href="/assets/css/remixicon.css" rel="stylesheet" />
|
||||
<link rel="stylesheet" type="text/css" href="/assets/css/fonts.css" />
|
||||
<link rel="stylesheet" type="text/css" href="/assets/style.css" />
|
||||
|
||||
<script type="module">
|
||||
document.body.addEventListener("htmx:responseError", function (event) {
|
||||
const config = event.detail.requestConfig;
|
||||
if (config.boosted) {
|
||||
document.body.innerHTML = event.detail.xhr.responseText;
|
||||
const newUrl = event.detail.xhr.responseURL || config.url;
|
||||
window.history.pushState(null, "", newUrl);
|
||||
}
|
||||
});
|
||||
</script>
|
||||
Reference in New Issue
Block a user