-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.njk
32 lines (26 loc) · 786 Bytes
/
index.njk
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
---
title: Myreli
summary: Notas privadas, mas públicas. Divagações sobre software eficiente e sustentável.
date: 2020-01-01
hideComments: true
eleventyNavigation:
key: Posts
---
<h3>✨ Mais acessado:
<small><a href="/articles/2022-06-15-Web-Bloat/">O inchaço da Web</a></small>
</h3>
{% set posts = collections.articles.concat(listed.notes) | sort(attribute='data.date') | reverse %}
<ul>
{% for post in posts %}
<li>
{% if post.data.type == 'note' %}
<kbd>Note</kbd>
{% else %}
<kbd>Article</kbd>
{% endif %}
<a href="{{ post.data.url | default(post.url) }}"><strong>{{ post.data.title | default(post.url) }}</strong></a>
<p>{{ post.data.summary }} <em>({{ post.data.date | date }}</em>)</p>
</li>
<hr />
{% endfor %}
</ul>