wiki.clockworkpi.com/_global/Special:Categories.html
2024-02-22 00:03:39 -08:00

18 lines
457 B
HTML

---
layout: default
title: Tags
menu: ['global']
---
<ul>
{%- assign sorted_tags = site.tags | sort -%}
{%- for tag in sorted_tags -%}
{%- assign counter = 0 -%}
{%- for other_page in site.wiki %}
{%- if other_page.tags contains tag -%}
{%- assign counter = counter | plus: 1 -%}
{%- endif -%}
{%- endfor -%}
<li><a href="/{{ site.data.i18n[site.lang].prefix.tag }}{{ tag }}">{{ tag }}</a> ({{counter}} pages)</li>
{%- endfor -%}
</ul>