defiance-ng/layouts/_default/list.html

24 lines
574 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}}">
2023-01-23 18:01:14 -08:00
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
2022-07-20 14:27:20 -07:00
{{ partial "metadata.html" . }}
2022-09-13 15:46:33 -07:00
{{ if .Params.cws }}
2023-06-04 13:49:34 -07:00
<a href="{{ .RelPermalink }}">
<p>Content Warning: {{ range $i, $e := .Params.cws -}}{{- if $i -}}, {{ end -}}{{ $e | humanize }}{{- end -}}</p>
</a>
2022-09-13 15:46:33 -07:00
{{ else }}
<br><br>
2022-07-20 14:27:20 -07:00
<a href="{{ .RelPermalink }}">
<p>{{ .Summary }}</p>
2022-07-20 14:27:20 -07:00
</a>
2022-09-13 15:46:33 -07:00
{{ end }}
2023-10-16 17:26:13 +00:00
<hr>
2023-10-24 17:40:17 +00:00
</li>
2022-07-20 14:27:20 -07:00
{{ end }}
</ul>
{{ end }}