Skip to content

Instantly share code, notes, and snippets.

@rruhlen
Created January 24, 2019 07:37
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 rruhlen/4cda953eb264adf7173e9bfac3ca9b49 to your computer and use it in GitHub Desktop.
Save rruhlen/4cda953eb264adf7173e9bfac3ca9b49 to your computer and use it in GitHub Desktop.
detect language and display link if page loaded is the article page
{% case system.language %}
{% when 'en_au' %}
{% if page == 'page_article' %}
AU tag
{% endif %}
{% when 'en_nz' %}
{% if page == 'page_article' %}
NZ tag
{% endif %}
{% endcase %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment