wiki.clockworkpi.com/_global/Special:RecentChanges.html
2019-05-05 21:55:42 +02:00

16 lines
389 B
HTML

---
layout: default
title: Recent changes
menu: ['global']
---
{%- include /functions/wiki-pages.html -%}
{%- assign recent_changes = wiki_pages | where_exp: 'page', 'page.modified' | sort: 'modified' | reverse -%}
<ul>
{%- for page in recent_changes limit:20 -%}
<li>
<a href="/{{ page.slug }}.html">{{ page.title }}</a>
&nbsp;- {{ page.modified }}
</li>
{%- endfor -%}
</ul>