hugo-theme-introduction/layouts/_default/terms.html
Hanzei 3a6144e557
Fix assets for thems site (#111)
* Fix font path

* Fix favicon path

* Revert "Serve hugo pipes assets with .RelPermalink (#107)"

This reverts commit 88aa5812f5.

* Use relLangURL

* Rebuild docs
2018-11-28 20:50:50 +01:00

9 lines
353 B
HTML

{{ define "main" }}
<div class="container">
<div class="section tags-list">
{{- range $key, $value:= .Data.Terms -}}
<a class="tag-cloud" href="{{ "/" | relLangURL }}{{ $.Data.Plural | urlize }}/{{ $key | urlize }}">{{ $key }}&nbsp;({{ $value.Count }})</a>
{{- end -}}
</div>
</div>
{{ end }}