hugo-theme-stack/layouts/partials/widget/categories.html
phoenix 6f5553a8b9
Add category widget
Adds the ability to add a category to the widgets.
2022-01-28 17:26:40 +01:00

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>