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