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