You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
123456789101112131415 |
- {{ $currentSection := (where .Site.Pages "Section" .Section) }}
- <aside class="bg-light-gray pr4">
- <ul>
- <li class="list b mb3">
- More {{ .Section }}
- </li>
- {{ range $currentSection }}
- <li class="list f5 w-100 hover-bg-white nl1">
- <a href="{{ .URL }}" class="link black ph2 pv2 db">
- {{ .Title }}
- </a>
- </li>
- {{ end }}
- </ul>
- </aside>
|