reading/layouts/home.html

26 lines
551 B
HTML
Raw Permalink Normal View History

2020-11-04 01:16:16 +00:00
{{- define "content" -}}
2020-11-03 23:53:38 +00:00
2020-11-04 01:16:16 +00:00
<style>
h3, p { margin: 0; }
h3 .date { color: gray; }
li { margin-bottom: 10px; }
</style>
2020-11-03 23:53:38 +00:00
<ul>
2020-11-04 00:14:49 +00:00
{{- range (sort .Pages "Lastmod" "desc") -}}
2020-11-03 23:53:38 +00:00
<li>
<h3 class="title">
2020-11-04 00:11:30 +00:00
<a href="{{ .Permalink }}">{{ .Title }}</a>
2020-11-03 23:53:38 +00:00
<small class="date">
<span title="{{ .Lastmod }}">{{ .Lastmod.Format "Mon Jun 02, 2006" }}</span>
</small>
</h3>
<p>{{ .Summary }}</p>
</li>
{{- end -}}
</ul>
2020-11-04 01:16:16 +00:00
{{- end -}}