2021-08-12 16:17:49 +00:00
|
|
|
{{ $current := .current }}
|
|
|
|
{{ template "menu-extra" dict "sect" .source "current" $current "site" $current.Site "target" .target }}
|
|
|
|
|
|
|
|
<!-- template -->
|
|
|
|
{{ define "menu-extra" }}
|
|
|
|
{{ $current := .current }}
|
|
|
|
{{ $site := .site }}
|
|
|
|
{{ $target := .target }}
|
|
|
|
{{ $sect := .sect }}
|
|
|
|
|
|
|
|
{{ range sort (default (seq 0) $sect) "weight" }}
|
|
|
|
{{ if isset . "ref" }}
|
|
|
|
{{ $this := $site.GetPage .ref }}
|
|
|
|
{{ $isCurrent := eq $current $this }}
|
|
|
|
{{ $icon := default false .icon }}
|
|
|
|
|
|
|
|
{{ if not .icon }}
|
|
|
|
{{ errorf "Missing 'icon' attribute in data file for '%s' menu item '%s'" $target .name }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if eq $target "header" }}
|
2021-10-15 09:50:11 +00:00
|
|
|
<span>
|
2021-08-12 16:17:49 +00:00
|
|
|
<a href="{{ if .external }}{{ .ref }}{{ else }}{{ relref $current .ref }}{{ end }}" class="gdoc-header__link">
|
|
|
|
<svg class="icon {{ .icon }}">
|
|
|
|
<title>{{ .name }}</title>
|
|
|
|
<use xlink:href="#{{ .icon }}"></use>
|
|
|
|
</svg>
|
|
|
|
</a>
|
2021-10-15 09:50:11 +00:00
|
|
|
</span>
|
2021-08-12 16:17:49 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|