summaryrefslogtreecommitdiff
path: root/layouts/_default/baseof.html
blob: af088c4d1f30836d96e893f6e6d0c7c3b8c65c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
{{ partial "head.html" . }}
  <body class="{{ .Site.Params.themeColor }} {{if .Site.Params.layoutReverse}}layout-reverse{{end}}">
  {{ partial "sidebar.html" . }}
    <main class="content container">
    {{ block "main" . -}}{{- end }}
    </main>

    {{ if not .Site.IsServer }}
      {{ template "_internal/google_analytics_async.html" . }}
    {{ end }}
  </body>
</html>