mirror of
https://github.com/clockworkpi/wiki.clockworkpi.com.git
synced 2025-12-12 16:58:50 +01:00
17 lines
370 B
HTML
17 lines
370 B
HTML
---
|
|
layout: default
|
|
title: Recent changes
|
|
menu: ['global']
|
|
---
|
|
{% if site.wiki %}
|
|
{%- assign recent_changes = site.wiki | where_exp: 'page', 'page.modified' | sort: 'modified' | reverse -%}
|
|
<ul>
|
|
{%- for page in recent_changes limit:20 -%}
|
|
<li>
|
|
<a href="{{ page.url }}">{{ page.title }}</a>
|
|
- {{ page.modified }}
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|
|
{% endif %}
|