amberterm/layouts/_default/summary.html

10 lines
234 B
HTML
Raw Normal View History

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