mirror of
https://github.com/CaiJimmy/hugo-theme-stack.git
synced 2025-04-30 04:23:30 +08:00
15 lines
497 B
HTML
15 lines
497 B
HTML
<section class="widget tagCloud">
|
|
<div class="widget-icon">
|
|
{{ partial "helper/icon" "categories" }}
|
|
</div>
|
|
<h2 class="widget-title section-title">{{ T "widget.categoriesCloud.title" }}</h2>
|
|
|
|
<div class="tagCloud-tags">
|
|
{{ range first .Site.Params.widgets.categoriesCloud.limit .Site.Taxonomies.categories.ByCount }}
|
|
<a href="{{ .Page.RelPermalink }}" class="font_size_{{ .Count }}">
|
|
{{ .Page.Title }}
|
|
</a>
|
|
{{ end }}
|
|
</div>
|
|
</section>
|