2019-04-22 19:17:39 +02:00
|
|
|
{{ $bookSection := default "docs" .Site.Params.BookSection }}
|
|
|
|
{{ if eq $bookSection "*" }}
|
|
|
|
{{ .Scratch.Set "BookSections" .Site.Sections }}
|
|
|
|
{{ else }}
|
|
|
|
{{ $bookSections := where .Site.Sections "Section" $bookSection }}
|
|
|
|
{{ .Scratch.Set "BookSections" $bookSections }}
|
|
|
|
{{ end }}
|
2018-09-05 16:22:04 +02:00
|
|
|
|
2018-09-17 18:29:36 +02:00
|
|
|
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ $sections := .Scratch.Get "BookSections" }}
|
|
|
|
{{/* If there is only one section to render then render its children, else render all sections */}}
|
|
|
|
{{ if eq (len $sections) 1 }}
|
|
|
|
{{ with index $sections 0 }}
|
|
|
|
{{ template "book-section-children" (dict "Section" . "CurrentPage" $.Permalink) }}
|
|
|
|
{{ end }}
|
|
|
|
{{ else }}
|
2018-09-18 01:35:54 +02:00
|
|
|
<ul>
|
2019-04-30 22:16:02 +02:00
|
|
|
{{ range where $sections "Params.bookhidden" "!=" true }}
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ template "book-section" (dict "Section" . "CurrentPage" $.Permalink) }}
|
|
|
|
{{ end }}
|
|
|
|
</ul>
|
|
|
|
{{ end }}
|
2018-09-18 01:35:54 +02:00
|
|
|
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ define "book-section" }}
|
|
|
|
{{ with .Section }}
|
2019-05-27 16:48:23 +02:00
|
|
|
<li {{ if .Params.BookFlatSection}} class="book-section-flat" {{ end }}>
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ if .Content }}
|
|
|
|
{{ template "book-page-link" (dict "Page" . "CurrentPage" $.CurrentPage) }}
|
|
|
|
{{ else }}
|
2019-07-15 18:25:21 +02:00
|
|
|
<span>{{ partial "docs/title" . }}</span>
|
2018-09-18 01:35:54 +02:00
|
|
|
{{ end }}
|
|
|
|
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ template "book-section-children" (dict "Section" . "CurrentPage" $.CurrentPage) }}
|
|
|
|
</li>
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ define "book-section-children" }}
|
|
|
|
{{ with .Section }}
|
|
|
|
<ul>
|
2019-04-30 22:16:02 +02:00
|
|
|
{{ range where .Sections "Params.bookhidden" "!=" true }}
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ template "book-section" (dict "Section" . "CurrentPage" $.CurrentPage) }}
|
|
|
|
{{ end }}
|
2019-04-30 22:16:02 +02:00
|
|
|
{{ range where .Pages "Params.bookhidden" "!=" true }}
|
2018-09-18 01:35:54 +02:00
|
|
|
<li>
|
|
|
|
{{ template "book-page-link" (dict "Page" . "CurrentPage" $.CurrentPage) }}
|
|
|
|
</li>
|
2018-09-17 18:29:36 +02:00
|
|
|
{{ end }}
|
2018-09-18 01:35:54 +02:00
|
|
|
</ul>
|
|
|
|
{{ end }}
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ end }}
|
2018-09-17 18:29:36 +02:00
|
|
|
|
2018-09-18 01:35:54 +02:00
|
|
|
{{ define "book-page-link" }}
|
2019-04-22 19:17:39 +02:00
|
|
|
{{ with .Page }}
|
|
|
|
<a href="{{ .RelPermalink }}" {{ if eq $.CurrentPage .Permalink }} class="active"{{ end }}>
|
2019-07-15 18:25:21 +02:00
|
|
|
{{ partial "docs/title" . }}
|
2019-04-22 19:17:39 +02:00
|
|
|
</a>
|
|
|
|
{{ end }}
|
2018-09-05 16:22:04 +02:00
|
|
|
{{ end }}
|