Some checks failed
Déploiement Hugo Staging / deploy-staging (push) Has been cancelled
22 lines
462 B
HTML
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> |