5 lines
283 B
HTML
5 lines
283 B
HTML
{% assign months = "January,February,March,April,May,June,July,August,September,October,November,December" | split: "," %}
|
|
{% assign month_number = include.date | date: "%-m" | minus: 1 %}
|
|
|
|
{{ months[month_number] }} {{ include.date | date: "%-d" }}, {{ include.date | date: "%Y" }}
|