18 lines
373 B
HTML
18 lines
373 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<section class="photos">
|
|
<ul class="grid">
|
|
{{- $pages = .Paginate (first 50 .Pages.ByDate) -}}
|
|
{{- range $pages.ByDate -}}
|
|
{{- .Render "li_thumbnail_in_grid" -}}
|
|
{{- end -}}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|