33 lines
690 B
HTML
33 lines
690 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<link rel="icon" type="image/png" href="/img/favicon32.png">
|
|
<meta charset="utf-8">
|
|
<title>{{ block "title" . }}
|
|
{{- .Site.Title -}}
|
|
{{ end }}</title>
|
|
</head>
|
|
<body>
|
|
{{ block "header" . }}
|
|
{{ partial "site-header.html" . }}
|
|
{{ end }}
|
|
|
|
<div id="content">
|
|
{{ block "pagename" . }}
|
|
{{ partial "pagetitle.html" . }}
|
|
{{ end }}
|
|
|
|
<div id="main">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
|
|
{{ block "footer" . }}
|
|
{{ partial "site-footer.html" . }}
|
|
{{ end }}
|
|
{{ block "extrajs" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|