Skip to content

Commit b4e966a

Browse files
StartAutomatingStartAutomating
authored andcommitted
Merge pull request #56 from StartAutomating/obs-powershell-updates
obs-powershell 0.1.4
1 parent 04819a4 commit b4e966a

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

docs/2023.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
permalink: /2023/
3+
---
4+
{% assign currentYear = "2023" %}
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+
{% endif %}
14+
{% assign hasDisplayedYear = postYear %}
15+
{% if hasDisplayedYearMonth != postYearMonth %}
16+
### {{postYearMonth}}
17+
{% endif %}
18+
{% assign hasDisplayedYearMonth = postYearMonth %}
19+
* [ {{ post.title }} ]( {{ post.url }} )
20+
{% endfor %}

0 commit comments

Comments
 (0)