1
goldsmith-samples/bootstrap/layouts/collection.html

18 lines
398 B
HTML
Raw Normal View History

2017-12-10 17:50:36 +00:00
{{define "collection"}}
{{template "header" .}}
{{template "navbar" .}}
<div class="container">
2017-12-28 17:32:25 +00:00
{{range .Meta.Pager.Items}}
2017-12-10 17:50:36 +00:00
<div>
<h1><a href="{{.Path}}">{{.Meta.Title}}</a></h1>
2017-12-28 17:32:25 +00:00
<p>
{{.Meta.Summary.Intro}}
<a href="{{.Path}}">[&hellip;more]</a>
</p>
2017-12-10 17:50:36 +00:00
</div>
{{end}}
</div>
{{template "footer" .}}
{{end}}