22 lines
453 B
Plaintext
22 lines
453 B
Plaintext
---
|
|
layout: page-lists.njk
|
|
pagination:
|
|
data: collections.posts
|
|
size: 13
|
|
reverse: true
|
|
alias: postlist
|
|
eleventyNavigation:
|
|
key: home
|
|
order: 3
|
|
icon: fa fa-solid fa-crow
|
|
title: home
|
|
---
|
|
<p class="centered">(or <a href="/tags/">browse by tags</a>)</p>
|
|
|
|
{% include "postlist.njk" %}
|
|
|
|
{# idk why these are backwards either #}
|
|
{% set newerHref = pagination.href.previous %}
|
|
{% set olderHref = pagination.href.next %}
|
|
{% include "pagination.njk" %}
|