mirror of
https://git.adityakumar.xyz/hugo-theme-introduction.git
synced 2024-11-13 00:39:45 +00:00
3a6144e557
* Fix font path
* Fix favicon path
* Revert "Serve hugo pipes assets with .RelPermalink (#107)"
This reverts commit 88aa5812f5
.
* Use relLangURL
* Rebuild docs
9 lines
353 B
HTML
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 }} ({{ $value.Count }})</a>
|
|
{{- end -}}
|
|
</div>
|
|
</div>
|
|
{{ end }}
|