pages/news.html (19 lines of code) (raw):
---
title: News Archive
permalink: "/news/"
redirect_from: /blog/
---
<h2>{{ page.title }}</h2>
{% 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 %}
<hr>
<h3 class="archive-section-header">{{ post_year }}</h3>
{% endif %}
<div class="row">
<div class="col-md-1"><p>{{ post.date | date: "%b %d" }}</div>
<div class="col-md-10"><p><a href="{{ site.baseurl }}{{ post.url }}" class="post-title-archive">{{ post.title }}</a></div>
</div>
{% endfor %}