hugo-page-test/themes/tsc_vfl/layouts/partials/left_menu.html

30 lines
970 B
HTML
Raw Normal View History

2023-01-19 17:21:20 +00:00
{{ $currentPage := .Page }}
{{ range .Site.Menus.main }}
{{ if or ($currentPage.IsMenuCurrent "main" .) ($currentPage.HasMenuCurrent "main" .) }}
{{ if .HasChildren }}
{{ range .Children }}
{{ $submenu := "" }}
{{ if $currentPage.IsMenuCurrent "main" . }}
{{ $submenu = " active"}}
{{ end }}
<a href="{{ .URL }}" class="{{ $submenu }}">
{{ print .Name | safeHTML }}
</a>
{{ end }}
{{ end }}
{{ end }}
<!--<a class="nav-link" href="{{ .URL }}">
{{/*{{ if .Pre }}
{{ $icon := printf "<i data-feather=\"%s\"></i> " .Pre | safeHTML }}
{{ $icon }}
{{ end }}*/}}
{{ $text := print .Name | safeHTML }}
{{ $text }}
</a>
{{ if .HasChildren }}
{{ range .Children }}
{{ .Name }}
{{ end }}
{{ end }} -->
{{ end }}