Fork of @spf13's port of Mdo's excellent theme to Hugo https://brendan.abolivier.bzh/

baseof.html 376B

123456789101112
  1. {{ partial "head.html" . }}
  2. <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
  3. {{ partial "sidebar.html" . }}
  4. <main class="content container">
  5. {{ block "main" . -}}{{- end }}
  6. </main>
  7. {{ if not .Site.IsServer }}
  8. {{ template "_internal/google_analytics_async.html" . }}
  9. {{ end }}
  10. </body>
  11. </html>