wiki.clockworkpi.com/_global/Special:AllPages.html
cuu 72b2b073e5 try to fix
Liquid Exception: Liquid error (line 2): Cannot sort a null object. in /github/workspace/_global/Special:AllPages.html
2024-02-21 23:12:52 -08:00

21 lines
625 B
HTML

---
layout: default
title: All pages
menu: ['global']
---
<ul>
{% if site.data.wiki_pages %}
{%- assign sorted_page = site.data.wiki_pages | sort: "id" -%}
{%- for page in sorted_page -%}
{%- assign page_name = page.id | slice: 1, 50 -%}
{%- if page_name != page.title -%}
{%- assign page_name = page_name | append: " - " | append: page.title -%}
{%- endif -%}
<li>
<a href="{{ page.url }}">{{ page_name }}</a>&nbsp; [{{ page.bytes }} bytes]
{%- if page.author_full -%}&nbsp;(by <a href="{{ page.author_full.url }}">{{ page.author_full.name }}</a>) {%- endif -%}
</li>
{%- endfor -%}
{% endif %}
</ul>