Initial commit

This commit is contained in:
Elnu 2022-06-10 12:27:13 -07:00
parent 1228692325
commit dbe51f693d
23 changed files with 1924 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ range .Data.Terms.ByCount }}
<a href="{{ .Page.RelPermalink }}">{{ if eq .Page.Data.Singular "tag" }}#{{ end }}{{ .Page.Title }}</a> {{ $len := len .Pages }}{{ $len }} post{{ if ne $len 1 }}s{{ end }}<br>
{{ end }}
{{ end }}