Julien Martin 8d89730a80
Some checks failed
Déploiement Hugo Staging / deploy-staging (push) Has been cancelled
fix: Restructure les templates pour utiliser correctement les blocs Hugo
2025-05-27 10:50:07 +02:00

22 lines
462 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ .Title }}</title>
<link rel="stylesheet" href="/css/style.css">
</head>
<body>
<header>
{{ partial "header.html" . }}
</header>
<main>
{{ block "main" . }}{{ .Content }}{{ end }}
</main>
<footer>
{{ partial "footer.html" . }}
</footer>
</body>
</html>