defiance-ng/layouts/_default/list.html

18 lines
No EOL
391 B
HTML

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