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

10 lines
219 B
Plaintext
Raw Normal View History

2017-10-15 16:44:36 +00:00
{{define "cloud"}}
2022-01-09 02:33:05 +00:00
{{if .Props.TagState.CurrentTags}}
2017-10-15 16:44:36 +00:00
<div>
2022-01-09 02:33:05 +00:00
{{range .Props.TagState.CurrentTags}}
2020-05-03 04:31:10 +00:00
<a class="badge badge-secondary" href="/{{.IndexFile.Path}}">{{.RawName}}</a>
2017-10-15 16:44:36 +00:00
{{end}}
</div>
{{end}}
{{end}}