You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

27 lines
762 B

4 years ago
  1. <!DOCTYPE html>
  2. <html lang="{{ $.Site.Language }}">
  3. <head>
  4. {{ block "title" . }}
  5. <title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{ $.Site.Title }}{{ end }}</title>
  6. {{ end }}
  7. {{ partial "head.html" . }}
  8. </head>
  9. <body class="{{- ( or .Params.color $.Site.Params.ThemeColor ) -}}">
  10. {{ $container := cond $.Site.Params.FullWidthTheme "container full" (cond $.Site.Params.CenterTheme "container center" "container") }}
  11. <div class="{{- $container -}}{{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
  12. {{ partial "header.html" . }}
  13. <div class="content">
  14. {{ block "main" . }}
  15. {{ end }}
  16. </div>
  17. {{ block "footer" . }}
  18. {{ partial "footer.html" . }}
  19. {{ end }}
  20. </div>
  21. </body>
  22. </html>