reading/layouts/home.html
2020-11-03 19:16:16 -06:00

25 lines
551 B
HTML

{{- define "content" -}}
<style>
h3, p { margin: 0; }
h3 .date { color: gray; }
li { margin-bottom: 10px; }
</style>
<ul>
{{- range (sort .Pages "Lastmod" "desc") -}}
<li>
<h3 class="title">
<a href="{{ .Permalink }}">{{ .Title }}</a>
<small class="date">
<span title="{{ .Lastmod }}">{{ .Lastmod.Format "Mon Jun 02, 2006" }}</span>
</small>
</h3>
<p>{{ .Summary }}</p>
</li>
{{- end -}}
</ul>
{{- end -}}