github.io/layouts/partials/summary.html
Sivert V. Sæther 7123b8a409 Update dump
Also testing removal of the CNAME file!
😁
2022-04-07 15:52:18 +00:00

18 lines
502 B
HTML

{{- $pubdate := .PublishDate.Format "02/01/2006" }}
{{- $lastmod := .Lastmod.Format "02/01/2006" }}
<article>
<div>
<!-- <h3><a href='{{ .RelPermalink }}'>{{ .Title }}</a></h3> -->
<h3>{{ .Title }}</h3>
{{ i18n "published" }} {{ $pubdate }}
{{ if ne $pubdate $lastmod }}
{{ i18n "modified" }} {{ $lastmod }}
{{ end }}<br />
{{ .Summary }}
</div>
{{ if .Truncated }}
<div>
<a href='{{ .RelPermalink }}'>{{ i18n "readMore" }}…</a>
</div>
{{ end }}
</article>