SandpointsTheme/layouts/partials/graph-menu.html

21 lines
665 B
HTML
Raw Normal View History

2025-04-18 12:05:39 +02:00
{{- $cursiveMenuPrefix := .cursiveMenuPrefix -}}
{{- $menuSection := .menuSection -}}
{{- $pagePaths := .pagePaths -}}
<div class="graph-menu">
<div class="graph-inline-cursive">
{{- with $cursiveMenuPrefix -}}{{- . -}}&nbsp;{{- end -}}
{{- partial "GetPluralSectionName.html" $menuSection -}}
</div>
<div class="graph-inline-link">
{{- range $pagePaths -}}
{{- $p := site.GetPage . -}}
{{- $pageSection := trim $p.FirstSection.RelPermalink "//" -}}
{{- if eq $pageSection $menuSection -}}
<div>
<a href="{{- $p.RelPermalink -}}">{{- $p.LinkTitle -}}</a>
</div>
{{- end -}}
{{- end -}}
</div>
</div>