GoBlog/templates/summary.gohtml

9 lines
257 B
Plaintext
Raw Normal View History

2020-08-05 17:14:10 +00:00
{{ define "summary" }}
<article>
{{ with p . "title" }}<h2>{{ . }}</h2>{{ end }}
2020-09-19 12:56:31 +00:00
{{ with .Published }}<p>{{ dateformat . "02. Jan 2006" }}</p>{{ end }}
<p>{{ summary . }}</p>
2020-08-05 17:14:10 +00:00
<a href="{{ .Path }}">View</a>
</article>
<hr>
{{ end }}