hugo-internet-weblog/layouts/photos/single.html
2025-02-11 13:22:29 +01:00

21 lines
634 B
HTML

{{ partial "site_header.html" . }}
{{ partial "page_header.html" . }}
<main class="content">
<article class="post">
<h2><a rel="full-article" href="{{ .Permalink }}">{{ .Title }}</a></h2>
<div class="postmeta">
{{ with .Params.location }}Photos taken in {{ . }} on {{ end }}
<time datetime='{{ .Date | time.Format ":date_long" }}' pubdate="">{{ .Date | time.Format ":date_long" }}</time>
{{ with .Params.camera }} with {{ . }}{{ end }}
</div>
<p>
{{ .Content }}
</p>
</article>
</main>
{{ partial "page_footer.html" . }}
{{ partial "site_footer.html" . }}