mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
14 lines
292 B
HTML
14 lines
292 B
HTML
---
|
|
layout: default
|
|
title: Short pages
|
|
menu: ['global']
|
|
---
|
|
{%- assign long_pages = site.data.wiki_pages | sort: 'bytes' -%}
|
|
<ol>
|
|
{%- for page in long_pages limit:50 -%}
|
|
<li>
|
|
<a href="{{ page.url }}.html">{{ page.title }}</a> [{{ page.bytes }} bytes]
|
|
</li>
|
|
{%- endfor -%}
|
|
</ol>
|