2022-03-30 15:06:21 +00:00
|
|
|
{{- $pubdate := .PublishDate.Format "02/01/2006" }}
|
|
|
|
{{- $lastmod := .Lastmod.Format "02/01/2006" }}
|
2022-03-29 22:52:36 +00:00
|
|
|
<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 }}
|
2022-03-29 22:52:36 +00:00
|
|
|
</article>
|