mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
14 lines
372 B
HTML
14 lines
372 B
HTML
---
|
|
layout: default
|
|
title: All pages
|
|
menu: ['global']
|
|
---
|
|
<ul class="columns">
|
|
{%- for page in site.data.wiki_pages -%}
|
|
<li>
|
|
<a href="{{ page.url }}.html">{{ page.title }}</a> [{{ page.bytes }} bytes]
|
|
{%- if page.author_full -%} (by <a href="{{ page.author_full.url }}.html">{{ page.author_full.name }}</a>) {%- endif -%}
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|