mirror of https://github.com/theNewDynamic/gohugo-theme-ananke.git

Patrick Kollitsch
18.40.2026 db854384305e8ff3f54400631e8787af30aafd98
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{{ $pagesBySection := site.RegularPages.GroupBy "Section" }}
{{ $sortedSections := slice }}
 
{{ range $pagesBySection }}
  {{ $sectionPage := page.GetPage .Key }}
  {{ $sortedSections = $sortedSections | append (dict "sectionPage" $sectionPage "pages" .Pages) }}
{{ end }}
 
{{ range sort $sortedSections "sectionPage.Weight" }}
  <h3>{{ .sectionPage.Title }}</h3>
 
  <ul>
      {{ range .pages }}
      <li>
        <a href="{{ .Permalink }}">{{ .Title }}</a>
      </li>
      {{ end }}
  </ul>
{{ end }}