27 lines
654 B
HTML
27 lines
654 B
HTML
<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>
|
|
{{- 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>
|