summaryrefslogtreecommitdiff
path: root/templates/tags.html
blob: 7df7351f0c04304dc0c96ed927fb25ed74587646 (plain)
1
2
3
4
5
6
{{define "main"}}
<h1>Tags</h1>
{{with .Tags}}<ul class="tagcloud">{{range .}}
    <li class="tc-{{.SizeClass}}"><a href="/blog/tags/{{.Tag}}">{{.Tag}}</a></li>
{{end}}</ul>{{end}}
{{end}}