<!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">
      {{ block "pagename" . }}
      {{ partial "pagetitle.html" . }}
      {{ end }}

      <div id="main">
        {{ block "main" . }}
        {{ end }}
      </div>
    </div>

    {{ block "footer" . }}
      {{ partial "site-footer.html" . }}
    {{ end }}
  </body>
</html>