17 lines
360 B
Plaintext
17 lines
360 B
Plaintext
{{define "collection"}}
|
|
{{template "header" .}}
|
|
{{template "navbar" .}}
|
|
<div class="container">
|
|
{{range .Props.Groups.Blog}}
|
|
<div>
|
|
<h2><a href="{{.Path}}">{{.Props.Title}}</a></h2>
|
|
<p>
|
|
{{.Props.Summary}}
|
|
<a href="{{.Path}}">…</a>
|
|
</p>
|
|
</div>
|
|
{{end}}
|
|
</div>
|
|
{{template "footer" .}}
|
|
{{end}}
|