25 lines
551 B
HTML
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 -}}
|