1
mirror of https://github.com/jlelse/GoBlog synced 2024-06-02 16:14:27 +00:00
GoBlog/templates/summary.gohtml

9 lines
307 B
Plaintext

{{ define "summary" }}
<article>
{{ with p .Data "title" }}<h2>{{ . }}</h2>{{ end }}
{{ if .Data.Published }}<p>{{ longDate .Data.Published .Blog.Lang }}</p>{{ end }}
<p>{{ summary .Data }}</p>
<a href="{{ .Data.Path }}">{{ string .Blog.Lang "view" }}</a>
</article>
<hr>
{{ end }}