reading/layouts/home.html

28 lines
654 B
HTML
Raw Normal View History

2020-11-03 23:53:38 +00:00
<head>
<title>reading list</title>
<style>
body { font-family: Arial, Helvetica, sans-serif; }
h3 { margin: 0; }
h3 a { color: black; }
h3 .date { color: gray; }
</style>
</head>
<h1>reading list</h1>
<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>