Fix list page and keep list simple

This commit is contained in:
2025-05-13 23:51:16 -04:00
parent e6d8fd1b4e
commit 0a7745a3fe
3 changed files with 26 additions and 66 deletions

View File

@@ -11,7 +11,13 @@
{{range .Params.tags}}
<a class="btn" href="/tags/{{ . | urlize }}" role="button">{{ . }}</a>
{{end}}
{{end}}
{{end}}
{{ if .Params.categories }}
{{range .Params.categories}}
<a class="btn" href="/categories/{{ . | urlize }}" role="button">{{ . }}</a>
{{end}}
{{end}}
{{- if (and (eq .Lastmod.IsZero false) (ne .Lastmod .Date)) }}
&mdash; last updated <time>{{ .Lastmod.Format "January 2, 2006" }}</time>
{{- end }}