19 lines
441 B
Markdown
19 lines
441 B
Markdown
---
|
|
title: Blog
|
|
override:tags: []
|
|
pagination:
|
|
data: collections.blog
|
|
size: 2
|
|
generatePageOnEmptyData: true
|
|
eleventyNavigation:
|
|
key: Blog
|
|
order: 2
|
|
---
|
|
|
|
<ul>
|
|
{%- for post in pagination.items %}
|
|
<li><a href="{{ post.url }}">{{ post.data.title }}</a>
|
|
— <i>updated <time datetime="{{ post.date | formatDate: "y'-'LL'-'dd' 'HH':'mm" }}">{{ post.date | formatDate: "y'-'LL'-'dd' 'HH':'mm" }}</time></i></li>
|
|
{% endfor -%}
|
|
</ul>
|