1
goldsmith-samples/bootstrap/content/layouts/collection.gohtml

17 lines
357 B
Plaintext
Raw Normal View History

2019-02-02 02:46:23 +00:00
{{define "collection"}}
{{template "header" .}}
{{template "navbar" .}}
<div class="container">
{{range .Meta.Groups.Blog}}
<div>
<h2><a href="{{.Path}}">{{.Meta.Title}}</a></h2>
<p>
{{.Meta.Summary}}
<a href="{{.Path}}">&hellip;</a>
</p>
</div>
{{end}}
</div>
{{template "footer" .}}
{{end}}