{{ define "header" }} {{ partial "header.html" . }} {{ end }} {{ define "main" }} Back {{ if .Title }} {{ partial "development/draft_tag.html" . }} {{ .Title }} {{ .Date | time.Format "January 2, 2006" }} {{ end }} {{ $photos := .Resources.ByType "image" }} {{ 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 }} {{- range $photos -}} {{ . }} {{- end -}} {{ end }} {{ end }} {{ define "footer" }} {{ partial "footer.html" . }} {{ end }}