defiance-ng/layouts/_default/list.html

18 lines
391 B
HTML
Raw Normal View History

2022-07-20 14:27:20 -07:00
{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul id="artlist">
2022-09-06 14:09:19 -07:00
{{ range .Pages }}
<li data-tags="{{.Params.Tags}}">
2022-07-20 14:27:20 -07:00
<h3><a href="{{ .RelPermalink }}">{{ .Title }}</a></h3>
{{ partial "metadata.html" . }}
2022-09-13 15:46:33 -07:00
{{ if .Params.cws }}
{{ else }}
2022-07-20 14:27:20 -07:00
<a href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
</a>
2022-09-13 15:46:33 -07:00
{{ end }}
</li>
2022-07-20 14:27:20 -07:00
{{ end }}
</ul>
2022-08-07 20:56:08 -07:00
{{ end }}