mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
18 lines
478 B
HTML
18 lines
478 B
HTML
---
|
|
layout: default
|
|
title: Users
|
|
menu: ['global']
|
|
---
|
|
{%- include /functions/wiki-tags.html -%}
|
|
<ul>
|
|
{%- for user in site.data.users -%}
|
|
{%- assign counter = 0 -%}
|
|
{%- for other_page in wiki_pages %}
|
|
{%- if other_page.author == user[0] -%}
|
|
{%- assign counter = counter | plus: 1 -%}
|
|
{%- endif -%}
|
|
{%- endfor -%}
|
|
<li><a href="/{{ site.data.i18n[site.lang].prefix.user }}{{ user[0] }}.html">{{ user[1].name }}</a> ({{counter}} pages)</li>
|
|
{%- endfor -%}
|
|
</ul>
|