We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent629065b commit4912635Copy full SHA for 4912635
_gitops/whats-new/changelog.md
@@ -9,11 +9,12 @@ If you missed any of our previous online announcements, you can find the latest
9
10
>To subscribe to an RSS / Atom feed for our SaaS release notes, please[click here]({{ site.baseurl }}/changelog/gitops.xml).
11
12
-{% assign posts_by_year = site.posts-gitops | group_by_exp: "post", "post.date | date: '%Y'" %}
+{% assign posts_by_year = site.posts-gitops | group_by_exp: "post", "post.date | date: '%Y'"| reverse%}
13
{% for year in posts_by_year %}
14
<h2>{{ year.name }}</h2>
15
<ul>
16
-{% for post in year.items %}
+{% assign sorted_posts = year.items | reverse %}
17
+{% for post in sorted_posts %}
18
<li>
19
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
20
</li>