hugo-theme-hyde-hyde/layouts/partials/sidebar/menu.html

24 lines
634 B
HTML
Raw Normal View History

2018-01-24 09:42:50 +00:00
<div>
<ul class="sidebar-nav">
{{ $currentPage := . }}
2018-07-10 01:41:30 +00:00
{{- range .Site.Menus.main -}}
2018-01-24 09:42:50 +00:00
{{ if .HasChildren -}}
<li class="{{ if $currentPage.HasMenuCurrent "main" . }}active{{ end }}">
<a href="#">{{ .Pre }}<span>{{ .Name }}</span></a>
<ul class="sidebar-nav">
2018-07-10 01:41:30 +00:00
{{- range .Children -}}
2018-01-24 09:42:50 +00:00
<li class="{{ if $currentPage.IsMenuCurrent "main" . }}active{{ end }}">
<a href="{{ .URL }}">{{ .Name | title }}</a>
</li>
{{- end -}}
</ul>
2018-07-10 01:41:30 +00:00
{{- else -}}
2018-01-24 09:42:50 +00:00
<li>
<a href="{{.URL}}">{{ .Pre }} <span>{{ .Name | title }}</span></a>
</li>
{{- end -}}
{{- end }}
</li>
</ul>
</div>