Skip to content

Instantly share code, notes, and snippets.

@aprescott
Last active December 13, 2015 20:08
Show Gist options
  • Save aprescott/4967417 to your computer and use it in GitHub Desktop.
Save aprescott/4967417 to your computer and use it in GitHub Desktop.
Ordinals in straight Liquid templates.
{% assign d = time | date: "%d" | plus:0 %}
{% assign d_mod = d | modulo:10 %}
{% assign ordinals = "th,st,nd,rd,th,th,th,th,th,th" | split:"," %}
{% if d > 10 and d < 14 %}
{{ d }}th
{% else %}
{{ ordinals[d_mod] }}
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment