20 lines
566 B
HTML
20 lines
566 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<section class="photos">
|
|
<ul class="grid">
|
|
{{- range .Pages -}}
|
|
{{- $thumbnailResource := (index (.Resources.ByType "image") 0) -}}
|
|
{{- $thumbnail := $thumbnailResource.Fit "600x600" -}}
|
|
{{- $thumbnail := $thumbnail.Crop "600x600" -}}
|
|
<li><a href="{{ .RelPermalink }}" title="{{ .Title }}"><img src="{{ $thumbnail.RelPermalink }}"></a></li>
|
|
{{- end -}}
|
|
</ul>
|
|
</section>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|