generated from 5t3ph/11ty-sass-skeleton
-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathindex.njk
More file actions
26 lines (22 loc) · 626 Bytes
/
index.njk
File metadata and controls
26 lines (22 loc) · 626 Bytes
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
---
eleventyExcludeFromCollections: true
title: Full Site Changelog
created: 2021-10-20
is_log: true
---
<div class="h-feed">
{% for date, changes in collections.changes | groupby('date_group') %}
<h2><time>{{ date }}</time></h2>
{% for change in changes %}
<article class="change h-entry">
<h3 class="p-name">
<a href="{{ change.post.url }}">{{ change.post.data.title or "Needs Title" }}</a>:
</h3>
<div class="p-summary">
{{ change.log | md | safe }}
</div>
<a href="{{ change.url }}" class="u-url u-uid" hidden></a>
<article>
{% endfor %}
{% endfor %}
</div>