43 lines
901 B
HTML
43 lines
901 B
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
{{- if .Title -}}
|
|
{{ partial "content_header.html" . }}
|
|
{{- 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 -}}
|
|
<figure><img src="{{ $img.RelPermalink }}"></figure>
|
|
|
|
{{ .Content }}
|
|
|
|
{{- partial "photo_exif_table.html" $img.Exif -}}
|
|
|
|
{{- if in ($.Site.BaseURL | string) "localhost" -}}
|
|
{{- partial "development/photo_exif_table.html" $img.Exif -}}
|
|
{{- end -}}
|
|
{{ else }}
|
|
<figure>
|
|
<ul class="carousel">
|
|
{{- range $photos -}}
|
|
<li>{{ . }}</li>
|
|
{{- end -}}
|
|
</ul>
|
|
</figure>
|
|
{{ end }}
|
|
|
|
<footer>
|
|
{{ partial "footer_tags.html" . }}
|
|
</footer>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|