diff options
author | EuAndreh <eu@euandre.org> | 2020-02-06 04:04:24 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-02-06 04:04:24 -0300 |
commit | 6da16155b39a2621c0d942eabaadf898a5bc40b1 (patch) | |
tree | 7d2a17c12623dbd1e7936e7994b1b66b4d17e87b /_layouts/index.html | |
parent | Merge branch 'jekyll' (diff) | |
download | euandre.org-6da16155b39a2621c0d942eabaadf898a5bc40b1.tar.gz euandre.org-6da16155b39a2621c0d942eabaadf898a5bc40b1.tar.xz |
Use i18n date format everywhere
Diffstat (limited to '_layouts/index.html')
-rw-r--r-- | _layouts/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/_layouts/index.html b/_layouts/index.html index 5b45898..3c145d0 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -6,7 +6,7 @@ layout: default {%- for post in site.posts -%} {% if post.lang == page.lang %} <li> - <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: "%b %-d, %Y" }} + <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: site.t.date_format[page.lang] }} </li> {% endif %} {%- endfor -%} |