hugo-theme-stack/layouts/partials/widget/categories.html
xuesenyaqwq b0d0d4b27d v0.1
2025-05-07 01:22:19 +08:00

17 lines
612 B
HTML

{{- $context := .Context -}}
{{- $limit := default 10 .Params.limit -}}
<section class="widget category">
<div class="widget-icon">
{{ partial "helper/icon" "categories" }}
</div>
<h2 class="widget-title section-title">{{ T "widget.categoriesCloud.title" }}</h2>
<div class="category-label">
{{ range first $limit $context.Site.Taxonomies.categories.ByCount }}
<a href="{{ .Page.RelPermalink }}" class="font_size_{{ .Count }}">
{{ .Page.Title }}<span class="category-count">{{ .Count }}</span>
</a>
{{ end }}
</div>
</section>