8 lines
200 B
HTML
8 lines
200 B
HTML
{{ $category := .Get 0 }}
|
|
<dl>
|
|
{{ range index .Site.Taxonomies.categories $category }}
|
|
<time>{{ time.Format "2006-01-02" .Date }}</time>
|
|
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
|
|
{{ end }}
|
|
</dl>
|