Skip to content

Instantly share code, notes, and snippets.

@ear
Forked from aprescott/liquid_ordinals.liquid
Last active December 13, 2015 20:08
Show Gist options
  • Save ear/4967424 to your computer and use it in GitHub Desktop.
Save ear/4967424 to your computer and use it in GitHub Desktop.
{% assign day = post.created | date: "%d" %}
{% assign positions = "4," | append: day | split: "," %}
{% assign i = positions.min | minus: 1 %}
{% assign suffixes = "st,nd,rd,th" | split: "," %}
{% assign dayth = day | append: suffixes[i] %}
{{ dayth }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment