2022-10-15 10:02:01 -07:00
|
|
|
{{ define "header" }}
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
{{ end }}
|
|
|
|
|
2022-08-27 09:17:42 -07:00
|
|
|
{{ define "main" }}
|
|
|
|
<section class="photos">
|
2022-10-15 10:02:01 -07:00
|
|
|
<ul class="grid">
|
2022-10-19 07:38:26 -07:00
|
|
|
{{- $pages = .Paginate (first 50 .Pages.ByDate) -}}
|
|
|
|
{{- range $pages.ByDate -}}
|
|
|
|
{{- .Render "li_thumbnail_in_grid" -}}
|
2022-10-15 10:02:01 -07:00
|
|
|
{{- end -}}
|
|
|
|
</ul>
|
2022-08-27 09:17:42 -07:00
|
|
|
</section>
|
|
|
|
{{ end }}
|
2022-10-15 10:02:01 -07:00
|
|
|
|
|
|
|
{{ define "footer" }}
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
{{ end }}
|