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

weru
02.11.2025 3ce592799ee1f8f4f6688d148885582473887048
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{{- $config := site.Params }}
{{- $context := . }}
{{- $item_type := "http://schema.org/WebPage" }}
{{- $lang := site.Language.Lang }}
{{- $is_dark := $config.enableDarkMode }}
{{- $default_mode := $config.defaultLightingMode -}}
<!doctype html>
<html lang={{ $lang }}{{ with $is_dark }} class=dark{{ end }}{{ with $default_mode }} data-mode={{ . }}{{ end }} itemscope itemtype={{ $item_type }}>
<head>
  {{- partial "head/index" . }}
</head>
<body class="page-{{ .Kind }}" id="pagetop">
  <header class="nav_header">
    {{- partial "nav" . }}
  </header>
  {{- if or (eq .Section $config.blogDir) (eq .Type "search" ) }}
    {{- block "main" . }}{{ end }}
  {{- else }}
  <div class="main wrap pt-4">
    {{- $docSections := $config.docSections }}
    {{- with $docSections }}{{- else }}
      {{- $docSections = "docs" }}
    {{- end }}
    {{- $uniqueHomepage := .IsHome }}
    {{- if $config.uniqueHomepage }}
      {{- if .IsHome }}
        {{- $uniqueHomepage = true }}
      {{- end }}
    {{- else }}
      {{- $uniqueHomepage = false }}
    {{- end }}
    {{- if and (in $docSections .Section) (ne $uniqueHomepage true) }}
      {{- partial "document" . }}
    {{- else }}
      <div class="content">
        {{- block "main" . }}{{ end }}
      </div>
    {{- end -}}
  </div>
  {{- end }}
  {{- partial "scripts/translations" . -}}
  {{- partialCached "footer" . -}}
  {{- partialCached "sprites" . -}}
  {{- partial "scripts/bundle" . -}}
  {{- partial "scripts/mermaid" . -}}
</body>
</html>