defiance/layouts/_default/list.html
2023-11-06 17:02:01 +00:00

28 lines
741 B
HTML

{{ define "main" }}
<h1>{{ .Title }}</h1>
{{ .Content }}
<ul id="artlist">
{{ range .Pages }}
<li data-tags="{{.Params.Tags}}">
<h2><a href="{{ .RelPermalink }}">{{ .Title }}</a></h2>
{{ partial "metadata.html" . }}
{{ if .Params.cws }}
<a href="{{ .RelPermalink }}">
<p>Content Warning: {{ range $i, $e := .Params.cws -}}{{- if $i -}}, {{ end -}}{{ $e | humanize }}{{- end -}}</p>
</a>
{{ else }}
<br><br>
<a href="{{ .RelPermalink }}">
{{ $regex := `<img\s*src="(.+?)">` }}
{{ $matches := findRE $regex .Content 1 }}
{{ range $matches }}
{{ . | safeHTML }}
{{ end }}
<p>{{ .Summary }}</p>
</a>
{{ end }}
<hr>
</li>
{{ end }}
</ul>
{{ end }}