itsonus-blog/fr/index.njk

23 lines
608 B
Plaintext

---
layout: layouts/home.njk
eleventyNavigation:
key: i18n.nav.home
order: 1
---
{% set maxPosts = collections.posts.length | min(5) %}
<h1>{% if maxPosts == 1 %}Article{% else %}Derniers articles{% endif %}</h1>
{% set postslist = collections.posts | head(-5) %}
{% set postslistCounter = collections.posts | length %}
{% include "postslist.njk" %}
<p>Consulter plus d'articles dans <a href="/blog/">les archives</a>.</p>
{# List all of the pages in the project
<ul>
{%- for entry in collections.all %}
<li><a href="{{ entry.url }}"><code>{{ entry.url }}</code></a></li>
{%- endfor %}
</ul>
#}