Téléverser les fichiers vers "Theme-Bento/layouts/_default"

This commit is contained in:
2025-03-09 15:07:28 +00:00
parent 5264d6027c
commit 759388c3db
4 changed files with 101 additions and 0 deletions

View File

@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Title }} | {{ .Site.Title }}</title>
{{ $style := resources.Get "css/style.css" | resources.Minify }}
<link rel="stylesheet" href="{{ $style.RelPermalink }}">
</head>
<body>
{{ partial "header.html" . }}
<main>
{{ block "main" . }}{{ end }}
</main>
{{ partial "footer.html" . }}
{{ $js := resources.Get "js/theme-toggle.js" | resources.Minify }}
<script src="{{ $js.RelPermalink }}"></script>
{{- partial "scripts.html" . -}}
</body>
</html>