diff options
Diffstat (limited to '_layouts')
-rw-r--r-- | _layouts/index.html | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/_layouts/index.html b/_layouts/index.html index 73b97ef..037e0e3 100644 --- a/_layouts/index.html +++ b/_layouts/index.html @@ -2,14 +2,13 @@ layout: default --- <h1>{{ site.t.recent_posts[page.lang] }}</h1> -{% if site.posts.size > 0 %} +{% assign lposts=site.posts | where:"lang", page.lang | sort: 'date' %} +{% if lposts.size > 0 %} <ul> - {%- for post in site.posts -%} - {% if post.lang == page.lang %} - <li> - <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: site.t.date_format[page.lang] }} - </li> - {% endif %} + {%- for post in lposts -%} + <li> + <a href="{{ post.url }}">{{ post.title | escape }}</a> - {{ post.date | date: site.t.date_format[page.lang] }} + </li> {%- endfor -%} </ul> {% endif %} |