GoBlog/templates/photosummary.gohtml

12 lines
443 B
Plaintext
Raw Normal View History

2020-09-21 16:03:05 +00:00
{{ define "photosummary" }}
<article>
2020-10-12 16:47:23 +00:00
{{ with p .Data "title" }}<h2>{{ . }}</h2>{{ end }}
2020-10-12 17:46:14 +00:00
{{ if .Data.Published }}<p>{{ longDate .Data.Published .Blog.Lang }}</p>{{ end }}
2020-10-12 16:47:23 +00:00
{{ range $i, $photo := ( ps .Data .Blog.Photos.Parameter ) }}
2020-09-21 16:03:05 +00:00
{{ md ( printf "![](%s)" $photo ) }}
{{ end }}
2020-10-12 16:47:23 +00:00
<p>{{ summary .Data }}</p>
2020-10-12 17:12:43 +00:00
<a href="{{ .Data.Path }}">{{ string .Blog.Lang "view" }}</a>
2020-09-21 16:03:05 +00:00
</article>
<hr>
{{ end }}