Files
website/layouts/index.html
2026-02-27 22:36:11 -06:00

10 lines
220 B
HTML

{{ define "main" }}
{{ $chapters := where .Site.RegularPages "Params.tags" "cpp" }}
{{ range sort $chapters "Params.chapter" "asc" }}
<ul>
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
</ul>
{{ end }}
{{ end }}