---
title: News
sidebar: mydoc_sidebar
keywords: news, blog, updates, release notes, announcements
permalink: news_archive.html
toc: false
folder: news
---
This year's posts
{%for post in site.posts %}
{% unless post.next %}
{% else %}
{% capture year %}{{ post.date | date: '%Y' }}{% endcapture %}
{% capture nyear %}{{ post.next.date | date: '%Y' }}{% endcapture %}
{% if year != nyear %}
{{ post.date | date: '%Y' }}
{% endif %}
{% endunless %}
- {{ post.title }}
{% endfor %}