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

15 lines
308 B
HTML
Raw Normal View History

2017-12-10 17:50:36 +00:00
{{define "collection"}}
{{template "header" .}}
{{template "navbar" .}}
<div class="container">
{{range .Meta.Groups.Blog}}
<div>
<h1><a href="{{.Path}}">{{.Meta.Title}}</a></h1>
<p>{{.Meta.Content}}</h1>
</div>
{{end}}
</div>
{{template "footer" .}}
{{end}}