c8h4.io/layouts/shortcodes/pagelist.html

8 lines
195 B
HTML
Raw Normal View History

{{ $pages := where .Site.RegularPages "Title" "!=" "random notes" }}
<ul>
{{ range sort $pages "Title" "asc" }}
<li><a href="{{ .RelPermalink }}">{{ .LinkTitle }}</a></li>
{{ end }}
</ul>