amberterm/layouts/_default/summary.html

10 lines
234 B
HTML
Raw Permalink Normal View History

2021-07-21 11:16:12 -04:00
<article>
2023-04-16 10:40:43 -04:00
<h1><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
2021-07-21 11:16:12 -04:00
<div>
2023-04-16 10:40:43 -04:00
<b><time>{{ .Date.Format (default "2006-01-02" .Site.Params.dateFmt) }}</time>:</b> {{ .Summary }}
2021-07-21 11:16:12 -04:00
{{ if .Truncated }}
2023-04-16 10:40:43 -04:00
[...]
2021-07-21 11:16:12 -04:00
{{ end }}
</div>
</article>