refactor: remove archive page

feat/integration_ideo
Nicolas Doby 2022-10-28 14:46:18 +02:00
parent c99ee8e7bc
commit 0ae0555430
2 changed files with 4 additions and 21 deletions

View File

@ -4,14 +4,7 @@ eleventyNavigation:
key: Tous les articles
order: 3
---
<ul class="article-list">
{%- for post in collections.posts | reverse %}
<li>
<div>
<a href="{{ post.url }}">{{ post.data.title }}</a>
<time datetime="{{ post.data.date | htmlDateString }}">{{ post.data.date | htmlDateString }}</time>
</div>
<p>{{ post.data.description }}</p>
</li>
{%- endfor %}
</ul>
<h1>Tous les articles</h1>
{% set postslist = collections.posts %}
{% include "postslist.njk" %}

View File

@ -1,10 +0,0 @@
---
layout: home.njk
eleventyNavigation:
key: Archives
order: 2
---
<h1>Archive</h1>
{% set postslist = collections.posts %}
{% include "postslist.njk" %}