Skip to content

Instantly share code, notes, and snippets.

@DeskWOW
Created July 2, 2015 19:22
Show Gist options
  • Save DeskWOW/96eb9f01db5d0b4eed17 to your computer and use it in GitHub Desktop.
Save DeskWOW/96eb9f01db5d0b4eed17 to your computer and use it in GitHub Desktop.
Different date formats for different languages / locales.
{% if desk.system.language == 'fr' %}
<div class='meta'>
{{system.snippets.last_update}}: {{ article.updated_at | in_time_zone: site.timezone | date: '%d %b, %Y %I:%M%p %Z' }}
</div>
{% else %}
<div class='meta'>
{{system.snippets.last_update}}: {{ article.updated_at | in_time_zone: site.timezone | date: '%b %d, %Y %I:%M%p %Z' }}
</div>
{% endif %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment