7 lines
192 B
HTML
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> |