40 lines
812 B
HTML
40 lines
812 B
HTML
<!DOCTYPE html>
|
|
<html lang="fr">
|
|
<head>
|
|
<link rel="stylesheet" href="/css/style.css">
|
|
<meta charset="utf-8">
|
|
<title>{{ block "title" . }}
|
|
{{- .Site.Title -}}
|
|
{{ end }}</title>
|
|
</head>
|
|
<body>
|
|
{{ block "header" . }}
|
|
{{ partial "site-header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ block "ingredients" . }}
|
|
{{ end }}
|
|
|
|
<div id="content">
|
|
<div class="content-inner">
|
|
{{ block "pagename" . }}
|
|
{{ partial "pagetitle.html" . }}
|
|
{{ end }}
|
|
|
|
<div id="main">
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
<div id="main_photo">
|
|
{{ block "photo" . }}
|
|
{{ end }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
{{ block "footer" . }}
|
|
{{ partial "site-footer.html" . }}
|
|
{{ end }}
|
|
</body>
|
|
</html>
|