2021-09-11 22:40:03 +00:00
2022-02-06 12:51:54 +00:00
{{ "<!-- hack to let hugo tell us how to get to the root when using relativeURLs, it needs to be called *url= for it to do its magic: --> " | safeHTML }}
{{ "<!-- https://github.com/gohugoio/hugo/blob/145b3fcce35fbac25c7033c91c1b7ae6d1179da8/transform/urlreplacers/absurlreplacer.go#L72 --> " | safeHTML }}
2021-11-04 18:26:30 +00:00
< script >
var index_url={{ "index.json" | relLangURL }};
var root_url="/";
var baseUri=root_url.replace(/\/$/, '');
< / script >
2022-02-13 00:53:23 +00:00
< nav id = "sidebar" class = "default-animation {{ if $.Site.Params.showVisitedLinks }}showVisitedLinks{{ end }}" >
2021-09-12 08:33:24 +00:00
{{- $currentNode := . }}
{{- $showvisitedlinks := .Site.Params.showVisitedLinks }}
2022-02-13 08:45:11 +00:00
< div id = "header-wrapper" class = "default-animation" >
< div id = "header" class = "default-animation" >
2021-09-12 08:33:24 +00:00
{{ partial "logo.html" . }}
< / div >
{{- if not .Site.Params.disableSearch }}
2021-09-11 22:40:03 +00:00
{{ partial "search.html" . }}
{{- end }}
2021-09-12 08:33:24 +00:00
< / div >
{{- if not .Site.Params.disableLandingPageButton }}
2022-02-13 08:45:11 +00:00
< div id = "homelinks" class = "default-animation" >
2021-08-26 20:19:52 +00:00
< ul >
2021-09-12 08:33:24 +00:00
< li >
< a class = "padding" href = "{{ .Site.Params.landingPageURL | default " / " | relLangURL } } " > {{ .Site.Params.landingPageName | default `< i class = "fas fa-home" > < / i > Home` | safeHTML }}< / a >
< / li >
< / ul >
2021-09-13 17:23:38 +00:00
< / div >
2021-09-12 08:33:24 +00:00
{{- end }}
2022-02-14 19:34:18 +00:00
< div id = "content-wrapper" class = "highlightable" >
2021-09-12 08:33:24 +00:00
< ul class = "topics" >
2021-09-27 20:03:10 +00:00
{{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
{{- $currentOrdersectionsby := .Site.Home.Params.ordersectionsby | default $defaultOrdersectionsby }}
2021-09-23 20:27:58 +00:00
{{- $defaultAlwaysopen := .Site.Params.alwaysopen | default false }}
2021-09-27 20:03:10 +00:00
{{- if eq $currentOrdersectionsby "title" }}
2021-09-12 08:33:24 +00:00
{{- range .Site.Home.Sections.ByTitle }}
2021-09-23 20:27:58 +00:00
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
2021-09-11 22:40:03 +00:00
{{- end }}
{{- else }}
2021-09-12 08:33:24 +00:00
{{- range .Site.Home.Sections.ByWeight }}
2021-09-23 20:27:58 +00:00
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
2021-09-11 22:40:03 +00:00
{{- end }}
{{- end }}
2021-08-26 20:19:52 +00:00
< / ul >
2021-09-12 08:33:24 +00:00
{{- $disableShortcutsTitle := .Site.Params.DisableShortcutsTitle }}
{{- with .Site.Menus.shortcuts }}
2021-09-13 17:23:38 +00:00
< div id = "shortcuts" >
2021-09-13 17:24:37 +00:00
< div class = "nav-title" > {{ if not $disableShortcutsTitle }}{{ T "Shortcuts-Title" }}{{ end }}< / div >
2021-09-12 08:33:24 +00:00
< ul >
{{- range sort . "Weight" }}
2021-10-08 16:14:10 +00:00
< li > {{ .Pre }}< a class = "padding" href = "{{ .URL | relLangURL }}" > {{ safeHTML .Name }}< / a > {{ .Post }}< / li >
2021-09-12 08:33:24 +00:00
{{- end }}
< / ul >
2021-09-13 17:23:38 +00:00
< / div >
2021-09-12 08:33:24 +00:00
{{- end }}
2022-02-21 22:11:04 +00:00
{{- $siteLanguages := .Site.Languages }}
{{- $showlangswitch := and .Site.IsMultiLingual (not .Site.Params.disableLanguageSwitchingButton) (gt (int (len $siteLanguages)) 1) }}
{{- $themevariants := slice | append (.Site.Params.themeVariant | default "relearn-light" ) }}
{{- $showvariantswitch := gt (int (len $themevariants)) 1 }}
2022-02-12 22:14:33 +00:00
{{- $footer := partial "menu-footer.html" . }}
2022-02-15 19:28:29 +00:00
{{- $showfooter := not (eq 0 (int (len ($footer | plainify)))) }}
2022-02-21 22:11:04 +00:00
< div class = "footermargin footerLangSwitch footerVariantSwitch footerVisitedLinks footerFooter{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}{{if $showfooter}} showFooter{{end}}" > < / div >
< hr class = "default-animation footerLangSwitch footerVariantSwitch footerVisitedLinks footerFooter{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}{{if $showfooter}} showFooter{{end}}" / >
< div id = "prefooter" class = "footerLangSwitch footerVariantSwitch footerVisitedLinks{{if $showlangswitch}} showLangSwitch{{end}}{{if $showvariantswitch}} showVariantSwitch{{end}}{{if $showvisitedlinks}} showVisitedLinks{{end}}" >
2021-09-12 08:33:24 +00:00
< ul >
2022-02-21 22:11:04 +00:00
< li id = "select-language-container" class = "footerLangSwitch{{if $showlangswitch}} showLangSwitch{{end}}" >
2022-02-12 22:49:33 +00:00
< a class = "padding select-container" >
2021-09-12 08:33:24 +00:00
< i class = "fas fa-language fa-fw" > < / i >
2022-02-13 09:58:00 +00:00
< span > < / span >
2021-09-12 08:33:24 +00:00
< div class = "select-style" >
2021-10-17 21:03:41 +00:00
< select id = "select-language" onchange = "location = baseUri + this.value;" >
2021-09-12 08:33:24 +00:00
{{- $pageLang := .Page.Lang }}
{{- range .Page.AllTranslations }}
{{- $translation := . }}
{{- range $siteLanguages }}
{{- if eq $translation.Lang .Lang }}
{{- if eq $pageLang .Lang }}
2021-10-17 21:03:41 +00:00
< option id = "{{ $translation.Language }}" value = "{{ $translation.RelPermalink }}" selected > {{ .LanguageName }}< / option >
2021-09-12 08:33:24 +00:00
{{- else }}
2021-10-17 21:03:41 +00:00
< option id = "{{ $translation.Language }}" value = "{{ $translation.RelPermalink }}" > {{ .LanguageName }}< / option >
2021-09-12 08:33:24 +00:00
{{- end }}
{{- end }}
{{- end }}
{{- end }}
< / select >
< / div >
2022-02-14 18:46:10 +00:00
< div class = "select-clear" > < / div >
2021-09-12 08:33:24 +00:00
< / a >
< / li >
2022-02-21 22:11:04 +00:00
< li id = "select-variant-container" class = "footerVariantSwitch{{if $showvariantswitch}} showVariantSwitch{{end}}" >
2022-02-13 00:53:23 +00:00
< a class = "padding select-container" >
< i class = "fas fa-paint-brush fa-fw" > < / i >
2022-02-13 09:58:00 +00:00
< span > < / span >
2022-02-13 00:53:23 +00:00
< div class = "select-style" >
2022-02-20 22:58:16 +00:00
< select id = "select-variant" onchange = "variants.changeVariant( this.value );" >
2022-02-21 22:11:04 +00:00
{{- $firstvariant := true }}
2022-02-13 00:53:23 +00:00
{{- range $themevariants }}
{{- $themevariant := . }}
2022-02-20 23:01:23 +00:00
{{- $variantname := replaceRE "[-_]+" " " $themevariant }}
2022-02-21 22:11:04 +00:00
{{- if $firstvariant }}
{{- $firstvariant = false }}
2022-02-20 23:01:23 +00:00
< option id = "{{ $themevariant }}" value = "{{ $themevariant }}" selected > {{ $variantname | title }}< / option >
2022-02-13 00:53:23 +00:00
{{- else }}
2022-02-20 23:01:23 +00:00
< option id = "{{ $themevariant }}" value = "{{ $themevariant }}" > {{ $variantname | title }}< / option >
2022-02-13 00:53:23 +00:00
{{- end }}
{{- end }}
< / select >
< / div >
2022-02-14 18:46:10 +00:00
< div class = "select-clear" > < / div >
2022-02-13 00:53:23 +00:00
< / a >
2022-02-21 22:11:04 +00:00
< script > variants . markSelectedVariant ( ) ; < / script >
2022-02-13 00:53:23 +00:00
< / li >
2022-02-21 22:11:04 +00:00
< li class = "footerVisitedLinks{{if $showvisitedlinks}} showVisitedLinks{{end}}" > < a class = "padding" href = "#" data-clear-history-toggle = "" > < i class = "fas fa-history fa-fw" > < / i > {{ T "Clear-History" }}< / a > < / li >
2021-09-12 08:33:24 +00:00
< / ul >
2021-09-13 17:23:38 +00:00
< / div >
2022-02-21 22:11:04 +00:00
< div id = "footer" class = "footerFooter{{if $showfooter}} showFooter{{end}}" >
2022-02-12 22:14:33 +00:00
{{- $footer }}
2021-09-13 17:23:38 +00:00
< / div >
2021-09-12 08:33:24 +00:00
< / div >
< / nav >
{{- define "section-tree-nav" }}
2021-10-31 10:16:55 +00:00
{{- $showvisitedlinks := .showvisitedlinks }}
{{- $currentNode := .currentnode }}
{{- $currentFileRelPermalink := .currentnode.RelPermalink }}
{{- $alwaysopen := .alwaysopen }}
2021-09-12 08:33:24 +00:00
{{- with .sect }}
2021-11-15 22:41:51 +00:00
{{- $relearnIsHiddenFrom := index ($currentNode.Scratch.Get "relearnIsHiddenFrom") .RelPermalink }}
{{- $hidden := and $relearnIsHiddenFrom (not $.showhidden) (not (.IsAncestor $currentNode)) }}
2021-09-12 08:33:24 +00:00
{{- if $hidden }}
{{- else if .IsSection }}
{{- safeHTML .Params.head }}
2021-09-27 20:03:10 +00:00
{{- $defaultOrdersectionsby := .Site.Params.ordersectionsby | default "weight" }}
{{- $currentOrdersectionsby := .Params.ordersectionsby | default $defaultOrdersectionsby }}
2021-09-12 08:33:24 +00:00
{{- $currentAlwaysopen := .Params.alwaysopen | default $alwaysopen }}
2021-10-31 10:16:55 +00:00
< li data-nav-id = "{{.RelPermalink}}" title = "{{.Title}}" class = "dd-item{{if eq .RelPermalink $currentFileRelPermalink}} active{{end}}{{if .IsAncestor $currentNode }} parent{{end}}{{if $currentAlwaysopen}} alwaysopen{{end}}" > < a href = "{{.RelPermalink}}" >
2021-09-13 17:21:53 +00:00
{{- partial "menu-pre.html" . }}{{ or .Params.menuTitle .LinkTitle .Title }}{{ partial "menu-post.html" . }}
{{- if $showvisitedlinks }}< i class = "fas fa-check read-icon" > < / i > {{ end }}< / a > < ul >
2021-09-27 19:06:00 +00:00
{{- $pages := .Pages }}
{{- if .Page.IsHome }}
{{- $pages = .Sections }}
{{- else if .Page.Sections}}
{{- $pages = (.Pages | union .Sections) }}
2021-09-12 08:33:24 +00:00
{{- end }}
2021-09-23 20:27:58 +00:00
{{- $defaultAlwaysopen := .Site.Params.alwaysopen | default true }}
2021-09-27 20:03:10 +00:00
{{- if eq $currentOrdersectionsby "title" }}
2021-09-12 08:33:24 +00:00
{{- range $pages.ByTitle }}
2021-09-23 20:27:58 +00:00
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
2021-09-12 08:33:24 +00:00
{{- end }}
{{- else }}
{{- range $pages.ByWeight }}
2021-09-23 20:27:58 +00:00
{{- template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" $defaultAlwaysopen }}
2021-09-12 08:33:24 +00:00
{{- end }}
2021-09-13 17:21:53 +00:00
{{- end }}< / ul > < / li >
2021-09-12 08:33:24 +00:00
{{- else }}
2021-10-31 10:16:55 +00:00
< li data-nav-id = "{{.RelPermalink}}" title = "{{.Title}}" class = "dd-item{{if eq .RelPermalink $currentFileRelPermalink}} active{{end}}" > < a href = "{{.RelPermalink}}" >
2021-09-13 17:21:53 +00:00
{{- partial "menu-pre.html" . }}{{ or .Params.menuTitle .LinkTitle .Title }}{{ partial "menu-post.html" . }}
{{- if $showvisitedlinks }}< i class = "fas fa-check read-icon" > < / i > {{ end }}< / a > < / li >
2021-09-12 08:33:24 +00:00
{{- end }}
{{- end }}
{{- end }}