permalink |
---|
/2022/10/ |
{% assign currentYearMonth = "2022 10" %}
{% for post in site.posts %}
{% assign postYear = post.date | date: "%Y" %}
{% assign postYearMonth = post.date | date: "%B %Y" %}
{% assign postYM = post.date | date: "%Y %m" %}
{% if postYM != currentYearMonth %}
{% continue %}
{% endif %}
{% if hasDisplayedYearMonth != postYearMonth %}
{% endif %}
{% assign hasDisplayedYearMonth = postYearMonth %}
- [ {{ post.title }} ]( {{ post.url }} ) {% endfor %}