c8h4.io/layouts/shortcodes/pagelist.html
Christoph Heiss 8a3e84ab73
content: Add dedicated site for collecting random notes
Signed-off-by: Christoph Heiss <christoph@c8h4.io>
2023-10-17 23:52:44 +02:00

8 lines
195 B
HTML

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