GoBlog/templates/summary.gohtml

9 lines
301 B
Plaintext
Raw Normal View History

2020-08-05 17:14:10 +00:00
{{ define "summary" }}
<article>
2020-10-12 16:47:23 +00:00
{{ with p .Data "title" }}<h2>{{ . }}</h2>{{ end }}
{{ with .Data.Published }}<p>{{ dateformat . "02. Jan 2006" }}</p>{{ end }}
<p>{{ summary .Data }}</p>
2020-10-12 17:12:43 +00:00
<a href="{{ .Data.Path }}">{{ string .Blog.Lang "view" }}</a>
2020-08-05 17:14:10 +00:00
</article>
<hr>
{{ end }}