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 a657745 commit f1fcbd7Copy full SHA for f1fcbd7
docs/2023-02.md
@@ -0,0 +1,17 @@
1
+---
2
+permalink: /2023/02/
3
4
+{% assign currentYearMonth = "2023 02" %}
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