georges/layouts/_default/baseof.html

34 lines
690 B
HTML
Raw Permalink Normal View History

2022-02-02 15:59:34 +01:00
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" href="/css/style.css">
2022-02-16 22:30:30 +01:00
<link rel="icon" type="image/png" href="/img/favicon32.png">
2022-02-02 15:59:34 +01:00
<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 }}
2022-02-02 23:46:26 +01:00
{{ block "extrajs" . }}
{{ end }}
2022-02-02 15:59:34 +01:00
</body>
</html>