blob: d885ed130960ee2e2dbefceb9dbc45d2e2d4d560 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
{{ define "main" -}}
<ul class="posts">
<h1>Category: {{ .Title }}</h1>
{{ range .Data.Pages -}}
<li>
<div class="flex">
<a href="{{ .Permalink }}" class="truncate">{{ .Title }}</a>
<time class="nowrap" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</div>
</li>
{{- end }}
</ul>
{{- end }}
|