defiance/layouts/_default/list.html

15 lines
358 B
HTML
Raw Normal View History

2022-07-20 14:27:20 -07:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul id="artlist">
2022-07-20 14:27:20 -07:00
{{ range .Pages.ByPublishDate.Reverse }}
<li data-tags="{{.Params.Tags}}">
2022-07-20 14:27:20 -07:00
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
<a href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
</li>
2022-07-20 14:27:20 -07:00
{{ end }}
</ul>
{{ end }