mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-16 02:38:50 +01:00
15 lines
425 B
HTML
15 lines
425 B
HTML
---
|
|
layout: default
|
|
title: All pages
|
|
menu: ['global']
|
|
---
|
|
{%- include /functions/wiki-pages.html -%}
|
|
<ul class="columns">
|
|
{%- for page in wiki_pages -%}
|
|
<li>
|
|
<a href="{{ page.url }}.html">{{ page.title }}</a> [{{ page.bytes }} bytes]
|
|
{%- if page.author -%} (by <a href="/{{ site.data.i18n[site.lang].prefix.user }}{{ page.author }}.html">{{ page.author }}</a>) {%- endif -%}
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|