RANGE – Liste alle Seiten (pages) einer section (Sektion) auf, aber nicht die index Seite

{{ $title := "Your Section Title" }}
{{ $section := "your_section" }}
<h1>{{ $title }}</h1>
<ul>
  {{ range (where .Site.RegularPages.ByTitle "Section" $section ) }}
    <li>
      <a href="{{ .Permalink }}">{{ .Params.title | humanize | title }}</a>
    </li>
  {{ end }}
</ul>