hugo-theme-relearn/layouts/partials/menu.html

153 lines
6.6 KiB
HTML
Raw Normal View History

<nav id="sidebar" class="{{if $.Site.Params.showVisitedLinks }}showVisitedLinks{{end}}">
2021-08-24 18:57:33 +00:00
{{ $currentNode := . }}
{{ $showvisitedlinks := .Site.Params.showVisitedLinks }}
<div id="header-wrapper">
<div id="header">
{{ partial "logo.html" . }}
</div>
{{if not .Site.Params.disableSearch}}
{{ partial "search.html" . }}
{{end}}
</div>
{{if not .Site.Params.disableLandingPageButton }}
<section id="homelinks">
<ul>
<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>
</section>
{{end}}
2021-08-24 18:57:33 +00:00
<div class="highlightable">
<ul class="topics">
2021-08-24 18:57:33 +00:00
{{if eq .Site.Params.ordersectionsby "title"}}
{{range .Site.Home.Sections.ByTitle}}
2021-08-24 22:10:09 +00:00
{{ template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" false }}
2021-08-24 18:57:33 +00:00
{{end}}
{{else}}
{{range .Site.Home.Sections.ByWeight}}
2021-08-24 22:10:09 +00:00
{{ template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" false }}
{{end}}
2021-08-24 18:57:33 +00:00
{{end}}
</ul>
2017-08-02 21:39:49 +00:00
2017-08-16 21:14:58 +00:00
{{ $disableShortcutsTitle := .Site.Params.DisableShortcutsTitle}}
2017-08-02 21:39:49 +00:00
{{with .Site.Menus.shortcuts}}
<section id="shortcuts">
2017-08-16 21:14:58 +00:00
<h3>{{ if not $disableShortcutsTitle}}{{ T "Shortcuts-Title"}}{{ end }}</h3>
2017-08-02 21:39:49 +00:00
<ul>
{{ range sort . "Weight"}}
2021-08-24 18:57:33 +00:00
<li>
{{.Pre}}<a class="padding" href="{{.URL | absLangURL }}">{{safeHTML .Name}}</a>{{.Post}}
</li>
2017-08-02 21:39:49 +00:00
{{end}}
</ul>
</section>
{{end}}
2017-07-31 20:54:17 +00:00
{{ if or .Site.IsMultiLingual $showvisitedlinks }}
2021-08-24 18:57:33 +00:00
<section id="prefooter">
<hr/>
<ul>
{{ if and .Site.IsMultiLingual (not .Site.Params.DisableLanguageSwitchingButton)}}
<li>
<a class="padding">
<i class="fas fa-language fa-fw"></i>
<div class="select-style">
<select id="select-language" onchange="location = this.value;">
{{ $siteLanguages := .Site.Languages}}
{{ $pageLang := .Page.Lang}}
{{ range .Page.AllTranslations }}
{{ $translation := .}}
{{ range $siteLanguages }}
{{ if eq $translation.Lang .Lang }}
{{ $selected := false }}
{{ if eq $pageLang .Lang}}
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}" selected>{{ .LanguageName }}</option>
{{ else }}
<option id="{{ $translation.Language }}" value="{{ $translation.Permalink }}">{{ .LanguageName }}</option>
{{ end }}
{{ end }}
{{ end }}
{{ end }}
2021-08-24 18:57:33 +00:00
</select>
<svg version="1.1" id="Capa_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="255px" height="255px" viewBox="0 0 255 255" style="enable-background:new 0 0 255 255;" xml:space="preserve">
<g>
<g id="arrow-drop-down">
<polygon points="0,63.75 127.5,191.25 255,63.75 " />
</g>
</g>
</svg>
</div>
</a>
</li>
{{end}}
2021-08-24 18:57:33 +00:00
{{ if $showvisitedlinks}}
<li><a class="padding" href="#" data-clear-history-toggle=""><i class="fas fa-history fa-fw"></i> {{T "Clear-History"}}</a></li>
{{ end }}
</ul>
</section>
2017-07-31 20:54:17 +00:00
{{ end }}
<section id="footer">
{{ partial "menu-footer.html" . }}
</section>
</div>
</nav>
<!-- templates -->
{{ define "section-tree-nav" }}
{{ $showvisitedlinks := .showvisitedlinks }}
{{ $currentNode := .currentnode }}
{{ $currentFileUniqueID := "" }}
2021-08-24 22:10:09 +00:00
{{ $alwaysopen := .alwaysopen }}
{{ with $currentNode.File }}{{ $currentFileUniqueID = .UniqueID }}{{ end }}
2021-08-24 18:57:33 +00:00
{{with .sect}}
{{if and .IsSection (or (and (not .Params.hidden) (ne .Title "")) $.showhidden )}}
2021-08-24 18:57:33 +00:00
{{safeHTML .Params.head}}
2021-08-24 22:10:09 +00:00
{{ $currentAlwaysopen := .Params.alwaysopen | default $alwaysopen }}
<li data-nav-id="{{.RelPermalink}}" title="{{.Title}}" class="dd-item{{if eq .File.UniqueID $currentFileUniqueID}} active{{else if .IsAncestor $currentNode }} parent{{else if $currentAlwaysopen}} parent{{end}}">
2021-08-24 18:57:33 +00:00
<a href="{{.RelPermalink}}">
2021-08-25 08:05:36 +00:00
{{ partial "menu-pre.html" . }}{{or .Params.menuTitle .LinkTitle .Title}}{{ partial "menu-post.html" . }}
2021-08-24 22:10:09 +00:00
{{ if $showvisitedlinks}}<i class="fas fa-check read-icon"></i>{{end}}
2021-08-24 18:57:33 +00:00
</a>
{{ $numberOfPages := (add (len (where (where .Pages "Params.hidden" "ne" true ) "Title" "ne" "" )) (len (where (where .Sections "Params.hidden" "ne" true ) "Title" "ne" "" )) ) }}
2021-08-24 18:57:33 +00:00
{{ if ne $numberOfPages 0 }}
<ul>
{{ $currentNode.Scratch.Set "pages" .Pages }}
{{ if .Sections}}
{{ $currentNode.Scratch.Set "pages" (.Pages | union .Sections) }}
{{end}}
2021-08-24 18:57:33 +00:00
{{ $pages := ($currentNode.Scratch.Get "pages") }}
{{if eq .Site.Params.ordersectionsby "title"}}
{{ range $pages.ByTitle }}
{{ if and (or (.Params.hidden) (eq .Title "")) (not $.showhidden) }}
2021-08-24 18:57:33 +00:00
{{else}}
2021-08-24 22:10:09 +00:00
{{ template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" true}}
2021-08-24 18:57:33 +00:00
{{end}}
{{ end }}
{{else}}
2021-08-24 18:57:33 +00:00
{{ range $pages.ByWeight }}
{{ if and (or (.Params.hidden) (eq .Title "")) (not $.showhidden) }}
{{else}}
2021-08-24 22:10:09 +00:00
{{ template "section-tree-nav" dict "sect" . "currentnode" $currentNode "showvisitedlinks" $showvisitedlinks "alwaysopen" true}}
2021-08-24 18:57:33 +00:00
{{end}}
{{ end }}
{{end}}
2021-08-24 18:57:33 +00:00
</ul>
{{ end }}
</li>
{{else if and (not .Params.hidden) (ne .Title "") }}
2021-08-24 22:10:09 +00:00
<li data-nav-id="{{.RelPermalink}}" title="{{.Title}}" class="dd-item{{if eq .File.UniqueID $currentFileUniqueID}} active{{end}}">
<a href="{{ .RelPermalink}}">
2021-08-25 08:05:36 +00:00
{{ partial "menu-pre.html" . }}{{or .Params.menuTitle .LinkTitle .Title}}{{ partial "menu-post.html" . }}
2021-08-24 22:10:09 +00:00
{{ if $showvisitedlinks}}<i class="fas fa-check read-icon"></i>{{end}}
</a>
2021-08-24 18:57:33 +00:00
</li>
{{end}}
{{ end }}
{{ end }}