xmitter-11ty/index.njk
2023-01-23 11:37:44 -06:00

27 lines
672 B
Plaintext

---
layout: layouts/home.njk
eleventyNavigation:
key: Home
order: 1
---
{% set postsCount = collections.posts | length %}
{% set latestPostsCount = postsCount | min(3) %}
<h1>Latest {{ latestPostsCount }} Post{% if latestPostsCount != 1 %}s{% endif %}</h1>
{% set postslist = collections.posts | head(-3) %}
{% set postslistCounter = postsCount %}
{% include "postslist.njk" %}
{% if postsCount > 3 %}
<p>More posts can be found in <a href="/blog/">the archive</a>.</p>
{% endif %}
{# List every content page in the project #}
{#
<ul>
{%- for entry in collections.all %}
<li><a href="{{ entry.url }}"><code>{{ entry.url }}</code></a></li>
{%- endfor %}
</ul>
#}