2018-01-16 21:08:47 -06:00
|
|
|
---
|
|
|
|
layout: layouts/home.njk
|
2019-11-11 15:39:48 -06:00
|
|
|
eleventyNavigation:
|
|
|
|
key: Home
|
|
|
|
order: 1
|
2018-01-16 21:08:47 -06:00
|
|
|
---
|
2018-09-19 16:52:49 +02:00
|
|
|
|
2018-09-30 00:09:09 -05:00
|
|
|
<h1>Latest 3 Posts</h1>
|
2018-09-19 16:52:49 +02:00
|
|
|
|
2018-09-30 00:09:09 -05:00
|
|
|
{% set postslist = collections.posts | head(-3) %}
|
2020-01-02 21:51:24 -06:00
|
|
|
{% set postslistCounter = collections.posts | length %}
|
2018-01-22 08:17:48 -06:00
|
|
|
{% include "postslist.njk" %}
|
2018-09-19 16:52:49 +02:00
|
|
|
|
2018-09-30 00:15:28 -05:00
|
|
|
<p>More posts can be found in <a href="{{ '/posts/' | url }}">the archive</a>.</p>
|