2026-09-02 20:11:35 -04:00
|
|
|
{{ $category := .Get 0 }}
|
2026-07-11 14:54:56 -04:00
|
|
|
<dl>
|
2026-09-02 20:11:35 -04:00
|
|
|
{{ range index .Site.Taxonomies.categories $category }}
|
2026-07-11 14:54:56 -04:00
|
|
|
<time>{{ time.Format "2006-01-02" .Date }}</time>
|
|
|
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
|
|
|
{{ end }}
|
|
|
|
|
</dl>
|