We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83881a1 commit b4eee79Copy full SHA for b4eee79
docs/2025-03.md
@@ -0,0 +1,17 @@
1
+---
2
+permalink: /2025/03/
3
4
+{% assign currentYearMonth = "2025 03" %}
5
+{% for post in site.posts %}
6
+ {% assign postYear = post.date | date: "%Y" %}
7
+ {% assign postYearMonth = post.date | date: "%B [%Y](..)" %}
8
+ {% assign postYM = post.date | date: "%Y %m" %}
9
+ {% if postYM != currentYearMonth %}
10
+ {% continue %}
11
+ {% endif %}
12
+ {% if hasDisplayedYearMonth != postYearMonth %}
13
+## {{postYearMonth}}
14
15
+ {% assign hasDisplayedYearMonth = postYearMonth %}
16
+* [ {{ post.title }} ]( {{ post.url }} )
17
+{% endfor %}
0 commit comments