lugo/layouts/_default/list.html

12 lines
378 B
HTML
Raw Normal View History

2022-07-11 18:11:52 +00:00
{{ partial "header.html" . -}}
<header><h1 id="tag_{{ .Title }}">{{ .Title | title }}</h1></header>
2022-05-27 00:46:49 +00:00
<article>
2022-07-11 18:11:52 +00:00
{{ .Content -}}
2022-05-27 00:46:49 +00:00
<ul>
2022-07-11 18:11:52 +00:00
{{- range.Pages }}
<li><time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; <a href="{{ .RelPermalink }}">{{ .Title }}</a></li>
{{ end -}}
2022-05-27 00:46:49 +00:00
</ul>
</article>
2022-07-11 18:11:52 +00:00
{{- partial "footer.html" . }}