defiance-ng/layouts/_default/list.html
ch0ccyra1n 4d5ab6b64f fix
2022-08-07 20:56:08 -07:00

15 lines
No EOL
359 B
HTML

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