Initialisation du site.

This commit is contained in:
2026-02-13 18:09:53 +01:00
committed by Alexis Lahouze
parent 14e39093cf
commit 995eba2594
17 changed files with 125 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="{{ site.Language.LanguageCode }}" dir="{{ or site.Language.LanguageDirection `ltr` }}">
<head>
{{ partial "head.html" . }}
</head>
<body>
<header>
{{ partial "header.html" . }}
</header>
<main>
{{ block "main" . }}
Ce bloc sera remplacé par le contenu de la directive "define"
correspondante dans le template depuis lequel celui-ci est appliqué.
{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</body>
</html>