17 lines
373 B
HTML
17 lines
373 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr" class="h-full">
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
<body class="h-full">
|
|
<div class="container mx-auto">
|
|
<div class="bg-white">
|
|
{{ partial "header.html" . }}
|
|
</div>
|
|
{{ block "main" . }}{{ end }}
|
|
</div>
|
|
{{ partial "footer.html" . }}
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html>
|