www/_src/index.njk

15 lines
437 B
Plaintext
Raw Normal View History

2018-01-16 20:08:47 -07:00
---
layout: layouts/home.njk
eleventyNavigation:
key: Home
order: 1
2018-01-16 20:08:47 -07:00
---
2020-10-16 12:06:30 -06:00
{% set maxPosts = collections.posts.length | min(3) %}
<h1>Latest {% if maxPosts == 1 %}Post{% else %}{{ maxPosts }} Posts{% endif %}</h1>
{% set postslist = collections.posts | head(-3) %}
2020-01-02 20:51:24 -07:00
{% set postslistCounter = collections.posts | length %}
{% include "postslist.njk" %}
2018-09-29 23:15:28 -06:00
<p>More posts can be found in <a href="{{ '/posts/' | url }}">the archive</a>.</p>