54 lines
1.1 KiB
HTML
54 lines
1.1 KiB
HTML
{{ define "header" }}
|
|
{{ partial "header.html" . }}
|
|
{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<article class="post-single">
|
|
<nav class="post-nav">
|
|
<a class="back" href="{{ ref . `photos` }}">Back</a>
|
|
</nav>
|
|
|
|
{{ if .Title }}
|
|
<header>
|
|
{{ partial "development/draft_tag.html" . }}
|
|
<div class="post-title">
|
|
<h1>{{ .Title }}</h1>
|
|
<div class="post-date"><time>{{ .Date | time.Format "January 2, 2006" }}</time></div>
|
|
</div>
|
|
</header>
|
|
{{ 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 }}
|
|
|
|
</article>
|
|
{{ end }}
|
|
|
|
{{ define "footer" }}
|
|
{{ partial "footer.html" . }}
|
|
{{ end }}
|