Fix yearly changelog archives
This commit is contained in:
parent
2f96346d6d
commit
02f6b59b0b
@ -1,4 +1,4 @@
|
|||||||
{{ for log of changelogList |> toReversed }}
|
{{ for log of changelogList }}
|
||||||
{{ headingAnchor 2, log.fileSlug }}
|
{{ headingAnchor 2, log.fileSlug }}
|
||||||
{{ log.date |> formatDate }}
|
{{ log.date |> formatDate }}
|
||||||
{{ /headingAnchor }}
|
{{ /headingAnchor }}
|
||||||
|
@ -7,5 +7,11 @@ eleventyNavigation:
|
|||||||
order: 2
|
order: 2
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ set changelogList = collections["changelog 2022"] }}
|
{{ set changelogList = collections["changelog 2022"] |> toReversed }}
|
||||||
{{ include "partials/changelogs-list.vto" }}
|
{{ for log of changelogList }}
|
||||||
|
{{ headingAnchor 2, log.fileSlug }}
|
||||||
|
{{ log.date |> formatDate }}
|
||||||
|
{{ /headingAnchor }}
|
||||||
|
|
||||||
|
{{ log.content }}
|
||||||
|
{{ /for }}
|
||||||
|
@ -7,5 +7,11 @@ eleventyNavigation:
|
|||||||
order: 3
|
order: 3
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ set changelogList = collections["changelog 2023"] }}
|
{{ set changelogList = collections["changelog 2023"] |> toReversed }}
|
||||||
{{ include "partials/changelogs-list.vto" }}
|
{{ for log of changelogList }}
|
||||||
|
{{ headingAnchor 2, log.fileSlug }}
|
||||||
|
{{ log.date |> formatDate }}
|
||||||
|
{{ /headingAnchor }}
|
||||||
|
|
||||||
|
{{ log.content }}
|
||||||
|
{{ /for }}
|
||||||
|
@ -7,5 +7,11 @@ eleventyNavigation:
|
|||||||
order: 4
|
order: 4
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ set changelogList = collections["changelog 2024"] }}
|
{{ set changelogList = collections["changelog 2024"] |> toReversed }}
|
||||||
{{ include "partials/changelogs-list.vto" }}
|
{{ for log of changelogList }}
|
||||||
|
{{ headingAnchor 2, log.fileSlug }}
|
||||||
|
{{ log.date |> formatDate }}
|
||||||
|
{{ /headingAnchor }}
|
||||||
|
|
||||||
|
{{ log.content }}
|
||||||
|
{{ /for }}
|
||||||
|
@ -7,5 +7,11 @@ eleventyNavigation:
|
|||||||
order: 5
|
order: 5
|
||||||
---
|
---
|
||||||
|
|
||||||
{{ set changelogList = collections["changelog 2025"] }}
|
{{ set changelogList = collections["changelog 2025"] |> toReversed }}
|
||||||
{{ include "partials/changelogs-list.vto" }}
|
{{ for log of changelogList }}
|
||||||
|
{{ headingAnchor 2, log.fileSlug }}
|
||||||
|
{{ log.date |> formatDate }}
|
||||||
|
{{ /headingAnchor }}
|
||||||
|
|
||||||
|
{{ log.content }}
|
||||||
|
{{ /for }}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user