blob: 9e80d8434d8f0150076a2ff0920fc0f7dc379f7e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
---
layout: base.njk
eleventyExcludeFromCollections: true
title: Posts
---
<h2>Published Posts</h2>
{% for dateP, yearPosts in collections.postsByYear %}
<div class="date-based">
<h3>{{ dateP }}</h3>
<ul class="post-lists">
{% for post in yearPosts | reverse %}
<li><a href="{{post.url}}">{{ post.data.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
|