mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
19 lines
451 B
HTML
19 lines
451 B
HTML
---
|
|
layout: default
|
|
title: Tags
|
|
menu: ['global']
|
|
---
|
|
{%- include /functions/wiki-tags.html -%}
|
|
<ul>
|
|
{%- for tag in tags -%}
|
|
{%- assign counter = 0 -%}
|
|
{%- for other_page in 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>
|