Skip to content

Instantly share code, notes, and snippets.

@sshaw
Last active October 3, 2019 09:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sshaw/49ff68dacf7e084b951c956a60b9d1b1 to your computer and use it in GitHub Desktop.
Save sshaw/49ff68dacf7e084b951c956a60b9d1b1 to your computer and use it in GitHub Desktop.
"Random" Greeting in a Shopify Liquid Template
{% assign name = "sshaw" %}
{% assign greetings = "Hi %s!|Oi %s!|¡Hola %s!" | split: "|" %}
{% assign index = "now" | date: "%s" | modulo: greetings.size %}
{{ greetings[index] | replace_first: '%s', name }}
@xjtu-blacksmith
Copy link

An interesting implementation!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment