2021-10-15 22:30:12 +01:00
|
|
|
---
|
|
|
|
layout: layouts/home.njk
|
|
|
|
eleventyNavigation:
|
|
|
|
key: Home
|
|
|
|
order: 1
|
|
|
|
---
|
|
|
|
{% set maxPosts = collections.posts.length | min(3) %}
|
|
|
|
<h1>Latest {% if maxPosts == 1 %}Post{% else %}{{ maxPosts }} Posts{% endif %}</h1>
|
|
|
|
|
|
|
|
{% set postslist = collections.posts | head(-3) %}
|
|
|
|
{% set postslistCounter = collections.posts | length %}
|
|
|
|
{% include "postslist.njk" %}
|
|
|
|
|
|
|
|
<p>More posts can be found in <a href="{{ '/posts/' | url }}">the archive</a>.</p>
|
2021-11-23 17:02:02 +00:00
|
|
|
<p>Currently working on: Proxmox VE post/p>
|