pi-www-theme-soho/layouts/_default/category.html

14 lines
361 B
HTML
Raw Normal View History

2020-05-25 22:47:43 +03:00
{{ define "main" -}}
<ul class="posts">
<h1>Category: {{ .Title }}</h1>
2020-06-15 20:52:15 +03:00
{{ range .Data.Pages -}}
2020-05-25 22:47:43 +03:00
<li>
<span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
<time class="pull-right post-list" datetime="{{ .Date.Format "2006-01-02T15:04:05Z0700" }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</span>
</li>
{{- end }}
</ul>
{{- end }}