wiki.clockworkpi.com/_global/Special:LongPages.html
cuu 0176419d17 try to fix
Liquid Exception: Liquid error (line 2): Cannot sort a null object. in
 /github/workspace/_global/Special:***
2024-02-21 23:17:55 -08:00

16 lines
339 B
HTML

---
layout: default
title: Long pages
menu: ['global']
---
{% if site.data.wiki_pages %}
{%- 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>&nbsp; [{{ page.bytes }} bytes]
</li>
{%- endfor -%}
</ol>
{% endif %}