Files
tplate/web/templates/category.tmpl
2025-11-23 03:27:23 +08:00

25 lines
737 B
Cheetah

{{- define "category" }}
<main>
{{ "category" | .RenderStyle }}
<h1><a href="/">Posts</a> / Category</h1>
<div id="categories">
{{ range $name, $posts := .Categories -}}
<div>
<a href="{{ print "/category/" $name }}">{{ $name }}</a>
<p>{{ "2006/01" | (index $posts 0).FM.TimeDate.Format }}, {{ $posts | len }} posts</p>
</div>
{{ else -}}
<blockquote>No category found.</blockquote>
{{ end -}}
</div>
<hr>
<div id="tags">
{{ range $tag, $posts := .Tags -}}
<a href="{{ print "/category/_" $tag }}"># {{ $tag }}{{ if gt ($posts | len) 1 }} ({{ $posts | len }}){{ end }}</a>
{{ else -}}
<blockquote>No tag found.</blockquote>
{{ end -}}
</div>
</main>
{{- end }}