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