2022-03-04 06:47:10 +08:00
|
|
|
{{- $context := .Context -}}
|
|
|
|
{{- $limit := default 10 .Params.limit -}}
|
|
|
|
<section class="widget tagCloud">
|
|
|
|
<div class="widget-icon">
|
|
|
|
{{ partial "helper/icon" "categories" }}
|
|
|
|
</div>
|
2024-06-03 09:32:46 +08:00
|
|
|
<h2 class="widget-title section-title">
|
|
|
|
<a href="{{ "categories" | relLangURL }}">{{ T "widget.categoriesCloud.title" }}</a>
|
|
|
|
</h2>
|
2022-03-04 06:47:10 +08:00
|
|
|
|
|
|
|
<div class="tagCloud-tags">
|
|
|
|
{{ range first $limit $context.Site.Taxonomies.categories.ByCount }}
|
|
|
|
<a href="{{ .Page.RelPermalink }}" class="font_size_{{ .Count }}">
|
|
|
|
{{ .Page.Title }}
|
|
|
|
</a>
|
|
|
|
{{ end }}
|
|
|
|
</div>
|
|
|
|
</section>
|