blog-theme/layouts/partials/archive.html
2022-06-10 12:27:13 -07:00

8 lines
302 B
HTML

{{ range (.Pages.GroupByDate "2006") }}
<h3>{{ .Key }}</h3>
{{ range .Pages }}
<time datetime="{{ .Date.Format " 2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "01/02" }}</time>
<a class="title" href="{{ .Params.externalLink | default .RelPermalink }}">{{ .Title }}</a><br>
{{- end -}}
{{ end }}