{{ define "header" }} {{ partial "header.html" . }} {{ end }} {{ define "main" }} {{- $photos := where (.Resources.ByType "image") "Name" "not in" (slice "thumbnail" "Thumbnail" "thumbnail.jpg" "Thumbnail.jpg") -}} {{- if .Title -}} {{ partial "content_header.html" . }} {{- end -}} {{ if eq (len $photos) 0 }} {{ errorf "Missing photo from photos page %q" .Path }} {{ end }} {{ if eq (len $photos) 1 }} {{- $img := index $photos 0 -}}
{{ . }}
{{ .Content }} {{- partial "photo_exif_table.html" $img.Exif -}} {{- if in ($.Site.BaseURL | string) "localhost" -}} {{- partial "development/photo_exif_table.html" $img.Exif -}} {{- end -}} {{ else }}
{{ end }} {{ end }} {{ define "footer" }} {{ partial "footer.html" . }} {{ end }}