updated hugo site

This commit is contained in:
2026-02-28 00:59:59 -06:00
parent 42a02d30ec
commit d80acc7860
13 changed files with 502 additions and 48 deletions

View File

@@ -0,0 +1,15 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
{{ $chapters := where .Site.AllPages "Params.tags" .Params.tags }}
{{ range sort $chapters "Params.chapterno" "asc" }}
{{ if ne .Params.chapterno "00" }}
<li><a href="{{ .Permalink }}">{{ .Title }}</a></li>
{{ end }}
{{ end }}
{{ end }}