---
title: News Archive
permalink: "/news/"
redirect_from: /blog/
---
{{ page.title }}
{% assign visible_posts = site.posts | where:"draft",false %}
{% for post in visible_posts %}
{% assign post_year = post.date | date: "%Y" %}
{% assign newer_post_year = post.next.date | date: "%Y" %}
{% if post_year != newer_post_year %}
{% endif %}
{{ post.date | date: "%b %d" }}
{% endfor %}