nomnom/layouts/_default/baseof.html

41 lines
812 B
HTML
Raw Normal View History

<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" href="/css/style.css">
<meta charset="utf-8">
<title>{{ block "title" . }}
2019-05-11 21:54:00 +02:00
{{- .Site.Title -}}
{{ end }}</title>
</head>
<body>
{{ block "header" . }}
{{ partial "site-header.html" . }}
{{ end }}
{{ block "ingredients" . }}
{{ end }}
<div id="content">
2020-05-05 16:09:33 +02:00
<div class="content-inner">
{{ block "pagename" . }}
{{ partial "pagetitle.html" . }}
{{ end }}
2020-05-05 16:09:33 +02:00
<div id="main">
{{ block "main" . }}
{{ end }}
</div>
2021-01-10 18:17:55 +01:00
<div id="main_photo">
{{ block "photo" . }}
{{ end }}
</div>
</div>
</div>
{{ block "footer" . }}
{{ partial "site-footer.html" . }}
{{ end }}
</body>
</html>