diff options
author | EuAndreh <eu@euandre.org> | 2020-08-12 12:06:07 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-12 12:06:07 -0300 |
commit | 3720c8b0146c10a63dc1d9eba0556e0a67adfd1d (patch) | |
tree | 463e3dc33553c05f85275617617f342cb20f38ab /_layouts/index.html | |
parent | scripts/assert-content.sh: Add check for missing title (diff) | |
download | euandre.org-3720c8b0146c10a63dc1d9eba0556e0a67adfd1d.tar.gz euandre.org-3720c8b0146c10a63dc1d9eba0556e0a67adfd1d.tar.xz |
Use _includes/i18n-date.html for dates
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 1ce99ca..2e39734 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -12,7 +12,7 @@ layout: default <ul> {%- for post in lposts -%} <li> - <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: site.t.date_format[page.lang] }} + <a href="{{ post.url }}">{{ post.title | escape }}</a> - {% include i18n-date.html date=post.date %} </li> {%- endfor -%} </ul> |