Files
site/themes/xmin/layouts/_default/list.html
2021-09-06 01:09:50 -04:00

19 lines
331 B
HTML

{{ partial "header.html" . }}
{{if not .IsHome }}
<h1>{{ .Title }}</h1>
{{ end }}
{{ .Content }}
<ul>
{{ range (where .Data.Pages "Section" "!=" "") }}
<li>
<span class="date">{{ .Date.Format "2006/01/02" }}</span>
<a href="{{ .Permalink }}">{{ .Title }}</a>
</li>
{{ end }}
</ul>
{{ partial "footer.html" . }}