decentralized-id.github.io/_pages/recently-modified.md

15 lines
359 B
Markdown
Raw Normal View History

2020-01-06 07:50:48 +00:00
---
title: "Recently Updated Content"
description: "Shows listing of posts in order of how recently they've been updated."
permalink: /updated/
layout: single
published: false
---
<ul>
{% assign posts = site.posts | sort: 'post.last_modified_at' %}
{% for post in posts %}
<li>{{ post.title }} (original post date: {{ post.date }})</li>
{% endfor %}
</ul>