github.io/layouts/partials/summary.html

11 lines
359 B
HTML
Raw Permalink Normal View History

2022-03-30 15:06:21 +00:00
{{- $pubdate := .PublishDate.Format "02/01/2006" }}
{{- $lastmod := .Lastmod.Format "02/01/2006" }}
<article>
2022-08-18 13:41:11 +00:00
<p class="heading">{{ .Title }}</p>
{{ i18n "published" }} {{ $pubdate }}
{{ if ne $pubdate $lastmod }}
{{ i18n "modified" }} {{ $lastmod }}
{{ end }}<br />
{{ .Summary }}
{{ if .Truncated }}{{ i18n "readMore" }}...{{ end }}
</article>