wiki.clockworkpi.com/_global/Special:RecentChanges.html
2019-05-17 10:40:25 +02:00

16 lines
387 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.url }}.html">{{ page.title }}</a>
&nbsp;- {{ page.modified }}
</li>
{%- endfor -%}
</ul>