24 lines
746 B
HTML
24 lines
746 B
HTML
{{- $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 {{- 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>
|