Website/layouts/_default/baseof.html
Martin Gasque 0ba3f3c7c5 Initial commit
Will it deploy one day ?
2024-02-20 08:59:37 +01:00

29 lines
982 B
HTML

<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode | default "fr-FR" }}">
{{- partial "head/head.html" . -}}
<body>
{{ if and (not .Site.IsServer) (.Site.Params.gtm_id) }}
<!-- Google Tag Manager (noscript) -->
<noscript><iframe src="https://www.googletagmanager.com/ns.html?id={{ .Site.Params.gtm_id }}" height="0" width="0" style="display:none;visibility:hidden"></iframe></noscript>
<!-- End Google Tag Manager (noscript) -->
{{ end }}
{{- partial "header/header.html" . -}}
<main class="section">
{{- block "main" . }}{{- end }}
</main>
{{- partial "footer/footer.html" . -}}
{{- partial "footer/scripts.html" . -}}
<script>
if (window.netlifyIdentity) {
window.netlifyIdentity.on("init", user => {
if (!user) {
window.netlifyIdentity.on("login", () => {
document.location.href = "/admin/";
});
}
});
}
</script>
</body>
</html>