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

10 lines
352 B
HTML
Raw Normal View History

2018-07-01 08:09:29 +00:00
{{ define "main" }}
<div class="container">
<div class="section tags-list">
2018-07-23 22:04:56 +00:00
{{- range $key, $value:= .Data.Terms -}}
2019-08-07 09:37:06 +00:00
<a class="tag-cloud" href="{{ "" | relLangURL }}{{ $.Data.Plural | urlize }}/{{ $key | urlize }}">{{ $key }}&nbsp;({{ $value.Count }})</a>
2018-07-23 22:04:56 +00:00
{{- 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 }}