wiki.clockworkpi.com/_global/Special:RecentChanges.html
2019-05-18 12:58:23 +02:00

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