GoBlog/templates/summary.gohtml

9 lines
275 B
Plaintext

{{ define "summary" }}
<article>
{{ with p .Data "title" }}<h2>{{ . }}</h2>{{ end }}
{{ with .Data.Published }}<p>{{ dateformat . "02. Jan 2006" }}</p>{{ end }}
<p>{{ summary .Data }}</p>
<a href="{{ .Data.Path }}">View</a>
</article>
<hr>
{{ end }}