21 lines
455 B
Text
21 lines
455 B
Text
---
|
|
title: Devon's Lists
|
|
onpageTitle: Lists
|
|
layout: article.njk
|
|
pagination:
|
|
data: collections.list
|
|
size: 5
|
|
alias: posts
|
|
reverse: true
|
|
---
|
|
|
|
<p>Like posts, lists are sorted by most recently modified.</p>
|
|
|
|
<ul class="post-list">
|
|
{%- for list in collections.list | reverse -%}
|
|
<li>
|
|
<h2><a href="{{ list.url }}">{{ list.data.title }}</a></h2>
|
|
<small>Last updated {{ list.date | formatDatetimeForHumans }}</small>
|
|
</li>
|
|
{%- endfor -%}
|
|
</ul>
|