hugo-theme-introduction/layouts/_default/terms.html
2018-07-01 10:09:29 +02:00

12 lines
411 B
HTML

{{ define "main" }}
<div class="container">
<article>
{{ .Content }}
</article>
<div class="section tags-list">
{{ range $name, $taxonomy := .Site.Taxonomies.tags }}
<a class="tag-cloud" href="{{"tags/" | relLangURL }}{{ $name | urlize }}">{{ lower $name }}&nbsp;({{ len $taxonomy }})</a>
{{ end }}
</div>
</div>
{{ end }}