mirror of https://github.com/onweru/compose.git

weru
21.39.2020 71169c94bc9686bc0d74580a7e415838cb10db5a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html lang="{{ .Site.Language.Lang }}"{{ with .Site.Params.darkmode }} class="dim"{{ end }}>
<head>
  {{- partial "head" . }}
</head>
<body class="page-{{ .Kind }}">
  <header class="nav_header">
    {{- partial "nav" . }}
  </header>
  <div class="main wrap pt-4">
    {{- if eq .Section "docs" }}
    {{- partial "document" . }}
    {{- else }}
    {{- block "main" . }}{{ end }}
    {{- end }}
  </div>
  {{- partial "footer" . }}
  {{- partial "sprites" . }}
  {{- partial "scripts" . }}
</body>
</html>