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

17 lines
360 B
Plaintext
Raw Normal View History

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