damnit four

This commit is contained in:
2024-10-28 16:26:25 -05:00
parent 44ad8cb367
commit 7966b0bcff
71 changed files with 4338 additions and 0 deletions

View File

@ -0,0 +1,19 @@
{{ define "main" }}
<section id="list">
{{ $baseurl := .Site.BaseURL }}
<h2>{{ .Title }}</h2>
{{ .Content }}
<ul>
{{ range $key, $value := .Data.Terms }}
<li><a href="{{ $key | urlize }}">{{ $key }}</a> <span class="count">({{ .Count }} entries)</span></li>
{{ end }}
</ul>
</section>
{{ end }}