mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-23 15:57:57 +00:00
83 lines
2.9 KiB
HTML
83 lines
2.9 KiB
HTML
<nav id="sidebar">
|
|
<div id="header-wrapper">
|
|
<div id="header">
|
|
{{ partial "logo.html" . }}
|
|
</div>
|
|
{{ if .Site.Params.search }}
|
|
{{ partial "search.html" . }}
|
|
{{ end }}
|
|
</div>
|
|
|
|
|
|
<div class="highlightable">
|
|
<ul class="topics">
|
|
{{ $page := . }}
|
|
{{ if $.Site.Params.menu }}
|
|
{{ $.Scratch.Set "menuItems" $.Site.Params.menu }}
|
|
{{ else }}
|
|
{{ $.Scratch.Set "_pages" (slice) }}
|
|
{{ range $key, $value := .Site.Sections }}
|
|
{{ $.Scratch.Add "_pages" ($.Site.GetPage "section" $key) }}
|
|
{{ end }}
|
|
{{ $.Scratch.Set "menuItems" (slice)}}
|
|
{{ range $key, $value := sort ($.Scratch.Get "_pages") "Weight" }}
|
|
{{ $.Scratch.Add "menuItems" $value.Section }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ $menuItems := $.Scratch.Get "menuItems" }}
|
|
{{ range $i, $key := $menuItems }}
|
|
{{ if ne $key "" }}
|
|
|
|
{{ $value := (index $page.Site.Sections $key) }}
|
|
{{ $.Scratch.Set "_value" $value }}
|
|
{{ with $index := $.Site.GetPage "section" $key }}
|
|
{{ if .Content }}
|
|
{{ $.Scratch.Set "first" $index }}
|
|
{{ else }}
|
|
{{ $.Scratch.Set "first" (index $value 0).Page }}
|
|
{{ if gt $value.Len 1 }}
|
|
{{ $.Scratch.Set "_value" (after 1 $value) }}
|
|
{{ else }}
|
|
{{ $.Scratch.Set "_value" nil }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ end }}
|
|
{{ $first := $.Scratch.Get "first" }}
|
|
{{ $value := $.Scratch.Get "_value" }}
|
|
|
|
<li class="dd-item {{ if eq $page.RelPermalink $first.RelPermalink }}active{{ end }} {{if in $page.RelPermalink $first.RelPermalink }}parent{{ end }}" data-nav-id="{{ $first.RelPermalink }}">
|
|
<a href="{{ $first.RelPermalink }}">
|
|
<span>
|
|
{{ if isset $first.Params "icon" }}
|
|
{{ printf $first.Params.icon | safeHTML }}
|
|
{{ end }}
|
|
{{ $first.Title }}
|
|
{{ if $page.Site.Params.showVisitedLinks}}
|
|
<i class="fa fa-check read-icon"></i>
|
|
{{ end }}
|
|
</span>
|
|
</a>
|
|
{{ if gt $value.Len 0}}
|
|
<ul>
|
|
{{ range $k, $p := $value }}
|
|
<li class="dd-item {{ if eq $page.RelPermalink $p.Page.RelPermalink }}active{{ end }}" data-nav-id="{{ $p.Page.RelPermalink }}">
|
|
<a href="{{ $p.Page.RelPermalink }}">
|
|
<span>{{ $p.Page.Title }} {{ if $page.Site.Params.showVisitedLinks}} <i class="fa fa-check read-icon"> {{ end }} </i></span>
|
|
</a>
|
|
</li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</li>
|
|
{{ end }}
|
|
{{ end }}
|
|
</ul>
|
|
<hr>
|
|
{{ if .Site.Params.showVisitedLinks}}
|
|
<a class="padding" href="#" data-clear-history-toggle=""><i class="fa fa-fw fa-history"></i> Clear History</a>
|
|
{{ end }}
|
|
<section id="footer">
|
|
{{ partial "menu-footer.html" . }}
|
|
</section>
|
|
</div>
|
|
</nav>
|