Skip to content

Instantly share code, notes, and snippets.

@gspncr
Created November 21, 2021 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gspncr/66c6f3b76ca8e60d4a7224fada9d8442 to your computer and use it in GitHub Desktop.
Save gspncr/66c6f3b76ca8e60d4a7224fada9d8442 to your computer and use it in GitHub Desktop.
liquid collection
{% assign bday = "1993-09-05" %}
{{ bday | date: "%Y" }}
{{'now' | date: '%Y' }}
{% assign today = 'now' | date: '%Y' %}
{% assign birthYear = bday | date: '%Y' %}
{{today}}
{{birthYear}}
{{today | minus: birthYear }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment