<!DOCTYPE html>
<html lang="{{ .Language.Lang }}" prefix="og: http://ogp.me/ns#">
{{ partial "head.html" . }}
{{ if .IsHome }}
<body class="body-fixed">
{{ else }}
<body>
{{ end }}
  {{- partial "header.html" . -}}
  {{ if .IsHome }}
    <main aria-role="main" class="home"
        itemscope itemtype="https://schema.org/Person">
  {{ else }}
    <main aria-role="main" class="container"
        itemscope itemtype="https://schema.org/Person">
  {{ end }}
  {{- block "main" . }}{{- end }}
  </main>
  {{ if ne .IsHome true }}
  {{- partial "footer.html" . -}}
  {{ end }}
</body>
</html>