Skip to content
Snippets Groups Projects
date.html 669 B
Newer Older
  • Learn to ignore specific revisions
  • Tom Wiesing's avatar
    Tom Wiesing committed
    {% comment %}
        Properly formats the date in yyyy[-mm] format. 
        Expects 'date' to be formatted as an argument. 
    {% endcomment %}
    
    Tom Wiesing's avatar
    Tom Wiesing committed
    {% assign dateparts = include.date | split: "-" %}
    
    Tom Wiesing's avatar
    Tom Wiesing committed
    {% assign year = dateparts[0] %}
    {% assign month = dateparts[1] %}
    
    {% if month == '01' %}
    January
    {% elsif month == '02' %}
    February
    {% elsif month == '03' %}
    March
    {% elsif month == '04' %}
    April
    {% elsif month == '05' %}
    May
    {% elsif month == '06' %}
    June
    {% elsif month == '07' %}
    July
    {% elsif month == '08' %}
    August
    {% elsif month == '09' %}
    September
    {% elsif month == '10' %}
    October
    {% elsif month == '11' %}
    November
    {% elsif month == '12' %}
    December
    {% endif %}
    {{year}}