defiance-ng/layouts/_default/list.html

29 lines
615 B
HTML

{{ define "main" }}
<style>
img {
max-width: 500px;
}
</style>
<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 }}
{{ else }}
<br><br>
<a href="{{ .RelPermalink }}">
{{ $regex := `<img\s*src="(.+?)">` }}
{{ $matches := findRE $regex .Content 1 }}
{{ range $matches }}
{{ . | safeHTML }}
{{ end }}
<p>{{ .Summary }}</p>
</a>
{{ end }}
</li>
{{ end }}
</ul>
{{ end }}