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.

menu-contextual.html 394B

123456789101112131415
  1. {{ $currentSection := (where .Site.Pages "Section" .Section) }}
  2. <aside class="bg-light-gray pr4">
  3. <ul>
  4. <li class="list b mb3">
  5. More {{ .Section }}
  6. </li>
  7. {{ range $currentSection }}
  8. <li class="list f5 w-100 hover-bg-white nl1">
  9. <a href="{{ .URL }}" class="link black ph2 pv2 db">
  10. {{ .Title }}
  11. </a>
  12. </li>
  13. {{ end }}
  14. </ul>
  15. </aside>