{{ define "header" }}
  {{ partial "header.html" . }}
{{ end }}
{{ define "main" }}
  {{- $photos := partial "photos/list.html" . -}}
  {{ if eq (len $photos) 0 }}
    {{ errorf "Missing photo from photos page %q" .Path }}
  {{ end }}
  {{ if eq (len $photos) 1 }}
    {{- $img := index $photos 0 -}}
    
      
    
    
      {{ .Title }}
      {{ .Content }}
    
    {{- if .Params.photo_details | default true -}}
      {{- partial "photo_exif_table.html" $img.Exif -}}
      {{- if in ($.Site.BaseURL | string) "localhost" -}}
        {{- partial "development/photo_exif_table.html" $img.Exif -}}
      {{- end -}}
    {{- end -}}
  {{ else }}
    
      
        {{- range $photos -}}
          - {{ . }}
 
        {{- end -}}
      
    
  {{ end }}
  
{{ end }}
{{ define "footer" }}
  {{ partial "footer.html" . }}
{{ end }}