Welcome to mirror list, hosted at ThFree Co, Russian Federation.

navigation.html « partials « layouts - github.com/huyb1991/hugo-lamp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 829893fa4d4a5e32f4bca1644aff5275fa6af311 (plain)
1
2
3
4
5
6
{{ $type := .Type }}
{{ $kind := .Kind }}
{{ $currentPage := . }}
{{ range .Site.Menus.main }}
  <li class="sidebar-item {{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }} is-active{{ end }}{{ if and (eq .Identifier "home") (eq $type "post") }} is-active{{ end }}{{ if and (eq .Identifier "home") (and (eq $type "page") (eq $kind "taxonomy"))}} is-active{{ end }}"><a class="sidebar-link" href="{{ .URL }}">{{ .Name }}</a></li>
{{ end }}