mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 08:48:51 +01:00
15 lines
354 B
HTML
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>
|
|
- {{ page.modified }}
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|