wiki.clockworkpi.com/_global/Special:Categories.html
Alexis Hassler a05643fc76 Small fixes
2019-05-19 18:23:17 +02:00

19 lines
484 B
HTML

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