We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9d8ba12 commit 2533c09Copy full SHA for 2533c09
1 file changed
index.md
@@ -24,8 +24,9 @@ feature_text: |
24
### Classic 2017 Episodes on Ports & Adapters, by Bob
25
26
<ul>
27
- {% for post in site.posts %}
28
- {% if post.date | date: "%Y" == "2017" %}
+ {% for post in site.posts reversed %}
+ {% assign year = post.date | date: "%Y" %}
29
+ {% if year == "2017" %}
30
<li>
31
<a href="{{ post.url }}">{{ post.date | date: "%Y-%m-%d" }} {{ post.title }}</a>
32
</li>
0 commit comments