lugo/layouts/_default/list.html

17 lines
326 B
HTML
Raw Normal View History

2022-04-14 20:07:48 +00:00
{{ partial "header.html" . }}
<header><h1>{{ .Title }}</h1></header>
{{ .Content }}
{{ range.Pages }}
<li>
2022-05-09 02:37:00 +00:00
<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash;
2022-04-14 20:07:48 +00:00
<a href="{{ .RelPermalink }}">{{ .Title }}</a>
</li>
{{ end }}
{{ partial "footer.html" . }}