Created
July 2, 2015 19:22
-
-
Save DeskWOW/96eb9f01db5d0b4eed17 to your computer and use it in GitHub Desktop.
Different date formats for different languages / locales.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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