SandpointsTheme/layouts/partials/menu_isin.html

25 lines
746 B
HTML
Raw Normal View History

2025-04-03 16:24:20 +02:00
{{- $sections := slice -}}
{{- $currentPage := .currentPage -}}
{{- $isin := .isin -}}
{{- range $isin -}}
{{- $p := site.GetPage . -}}
{{- $section := trim $p.FirstSection.RelPermalink "//" -}}
{{- $sections = uniq ($sections | append $section) -}}
{{- end -}}
<div class="has hashas">
{{- range $sections -}}
{{- $section := . -}}
<div class="hassup">is in&nbsp;{{- partial "GetPluralSectionName.html" $section -}}</div>
<div class="afterhas">
{{- range $isin -}}
{{- $p := site.GetPage . -}}
{{- if eq (trim $p.FirstSection.RelPermalink "//") $section -}}
<div>
<a href="{{- $p.RelPermalink -}}" >{{- $p.LinkTitle -}}</a >
</div>
{{- end -}}
{{- end -}}
</div>
{{- end -}}
</div>