hugo-theme-introduction/layouts/_default/terms.html

13 lines
411 B
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
{{ define "main" }}
<div class="container">
2018-06-25 13:03:18 +00:00
<article>
{{ .Content }}
</article>
2018-07-01 08:09:29 +00:00
<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 }}
2018-01-26 19:00:30 +00:00
</div>
2018-06-25 13:03:18 +00:00
</div>
2018-07-01 08:09:29 +00:00
{{ end }}