mirror of
https://github.com/jbowdre/virtuallypotato.git
synced 2024-11-22 06:52:18 +00:00
39 lines
No EOL
1.3 KiB
HTML
39 lines
No EOL
1.3 KiB
HTML
{{- $menu := .menu }}
|
|
{{ $menuData := .context.Site.Data.menu }}
|
|
{{- $link := .context.Permalink }}
|
|
{{- $url := "" }}
|
|
{{- $name := "" }}
|
|
{{- $forwardSlash := "/" }}
|
|
{{- $children := false }}
|
|
{{- range $menu }}
|
|
{{- if eq $menu $menuData }}
|
|
{{- $children = .submenu }}
|
|
{{- $name = .name }}
|
|
{{- $url = absURL .link }}
|
|
{{- else }}
|
|
{{- $children = .Children }}
|
|
{{- $name = .Name }}
|
|
{{- $url = absLangURL .URL }}
|
|
{{- end }}
|
|
<div class="nav_parent{{ if (and (not .Children) (eq (trim $url $forwardSlash) (trim $link $forwardSlash))) }} nav_active{{ end}}">
|
|
<a href="{{ $url }}" class="nav_item" title="{{ $name }}">{{ $name }} {{ with $children }}<img src='{{ absURL "icons/caret-icon.svg" }}' alt="icon" class="nav_icon">{{ end }}</a>
|
|
{{- with $children }}
|
|
<div class="nav_sub">
|
|
<span class="nav_child"></span>
|
|
{{- range . }}
|
|
{{- if eq $menu $menuData }}
|
|
{{- $name = .name }}
|
|
{{- $url = absURL .link }}
|
|
{{- else }}
|
|
{{- $name = .Name }}
|
|
{{- $url = absLangURL .URL }}
|
|
{{- end }}
|
|
<a href="{{ $url }}" class="nav_child nav_item" title="{{ $name }}">{{ $name }}</a>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
</div>
|
|
{{- end }}
|
|
<li class="nav-item">
|
|
{{- partial "search" . }}
|
|
</li> |