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>
|
|
|
|
<div>
|
2022-04-07 15:52:18 +00:00
|
|
|
<!-- <h3><a href='{{ .RelPermalink }}'>{{ .Title }}</a></h3> -->
|
|
|
|
<h3>{{ .Title }}</h3>
|
2022-03-30 15:06:21 +00:00
|
|
|
{{ i18n "published" }} {{ $pubdate }}
|
|
|
|
{{ if ne $pubdate $lastmod }}
|
|
|
|
{{ i18n "modified" }} {{ $lastmod }}
|
|
|
|
{{ end }}<br />
|
2022-03-29 22:52:36 +00:00
|
|
|
{{ .Summary }}
|
2022-05-02 15:11:40 +00:00
|
|
|
{{ if .Truncated }}{{ i18n "readMore" }}...{{ end }}
|
2022-03-29 22:52:36 +00:00
|
|
|
</div>
|
|
|
|
</article>
|