erynwells.me/layouts/photos/list.html

20 lines
425 B
HTML
Raw Normal View History

{{ define "header" }}
{{ partial "header.html" . }}
{{ end }}
2022-08-27 09:17:42 -07:00
{{ define "main" }}
2022-10-20 08:05:39 -07:00
{{- $pages := (.Paginate (first 50 (.Pages.GroupByDate "January 2006"))).PageGroups -}}
{{- range $pages -}}
2022-10-21 11:09:30 -07:00
<h6>{{ .Key | title }}</h6>
<ul class="grid">
{{- range .Pages -}}
{{- .Render "li_thumbnail_in_grid" -}}
{{- end -}}
</ul>
2022-10-20 08:05:39 -07:00
{{- end -}}
2022-08-27 09:17:42 -07:00
{{ end }}
{{ define "footer" }}
{{ partial "footer.html" . }}
{{ end }}