Display the date, like "May 5th", using Liquid strftime?
Quick Look ๐
How to do it
Strftime doesnโt allow you to format a date with a suffix.
So we can build filter to get the correct suffix.
Getting started โ๏ธ
1 | {% assign day = "now" | date: "%e"| modulo: 10 %} |