We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6856c7a commit 83881a1Copy full SHA for 83881a1
docs/2025.md
@@ -0,0 +1,20 @@
1
+---
2
+permalink: /2025/
3
4
+{% assign currentYear = "2025" %}
5
+{% for post in site.posts %}
6
+ {% assign postYear = post.date | date: "%Y" %}
7
+ {% assign postYearMonth = post.date | date: "[%B](%m) %Y" %}
8
+ {% if postYear != currentYear %}
9
+ {% continue %}
10
+ {% endif %}
11
+ {% if hasDisplayedYear != postYear %}
12
+## [{{postYear}}](.)
13
14
+ {% assign hasDisplayedYear = postYear %}
15
+ {% if hasDisplayedYearMonth != postYearMonth %}
16
+### {{postYearMonth}}
17
18
+ {% assign hasDisplayedYearMonth = postYearMonth %}
19
+* [ {{ post.title }} ]( {{ post.url }} )
20
+{% endfor %}
0 commit comments