21 lines
665 B
HTML
21 lines
665 B
HTML
|
{{- $cursiveMenuPrefix := .cursiveMenuPrefix -}}
|
|||
|
{{- $menuSection := .menuSection -}}
|
|||
|
{{- $pagePaths := .pagePaths -}}
|
|||
|
<div class="graph-menu">
|
|||
|
<div class="graph-inline-cursive">
|
|||
|
{{- with $cursiveMenuPrefix -}}{{- . -}} {{- 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>
|