Files
website/layouts/_shortcodes/booklist.html
2026-02-28 22:23:50 -06:00

7 lines
192 B
HTML

{{ $books := where .Site.AllPages "Layout" "frontcover" }}
Books:
<ul>
{{ range sort $books "Params.chapterno" "asc" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
</ul>