simpletheme/layouts/_default/category.html
J S 7c892580b5 feat[taxonomy] Added tags and categories
Added template files for tags and categories.
Updated css themes to something crappy.
2023-10-15 22:00:24 -04:00

14 lines
243 B
HTML

{{ define "main" }}
<ul>
{{range .Data.Pages}}
<li>
<a href="{{.RelPermalink}}">{{.Title}}</a>
</li>
{{end}}
</ul>
<div>
<h3><a href="{{ .Site.BaseURL }}categories">Back to all categories</a></h3>
</div>
{{ end }}