wiki.clockworkpi.com/_global/Special:RecentChanges.html
2019-06-20 22:21:51 +02:00

15 lines
349 B
HTML

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