baseof.html 497 B

12345678910111213141516
  1. <!DOCTYPE html>
  2. <html lang="{{ .Site.LanguageCode }}" class="m-auto {{ .Site.Params.theme.mainTheme }}">
  3. {{- partial "head.html" . -}}
  4. <body class="h-screen p-2 m-auto max-w-4xl flex flex-col">
  5. {{ if not .Site.Params.theme.singlePage }}
  6. {{ partial "header" . }}
  7. {{ end }}
  8. <main class="grow">
  9. {{- block "main" . }}
  10. {{- end }}
  11. </main>
  12. {{ if and (not .IsHome) (not .Site.Params.theme.singlepage) }}
  13. {{ partial "footer" . }}
  14. {{ end }}
  15. </body>
  16. </html>