Skip to content

Latest commit

 

History

History
19 lines (17 loc) · 533 Bytes

File metadata and controls

19 lines (17 loc) · 533 Bytes
layout page
title News
permalink /news/

{% for item in site.data.news %}

{{ item.title }}

{% assign day = item.date | date: "%-d" %} {% case day %} {% when "1" or "21" or "31" %}{% assign date_suffix = "st" %} {% when "2" or "22" %}{% assign date_suffix = "nd" %} {% when "3" or "23" %}{% assign date_suffix = "rd" %} {% else %}{% assign date_suffix = "th" %} {% endcase %}

{{ day }}{{ date_suffix }} {{ item.date | date: "%b %Y" }}

{{ item.body | markdownify }}

{% endfor %}