+
+ {% if page.lang == "fr" %}
+ {% assign frPosts = site.posts | where: 'lang', 'fr' %}
+ {% for post in frPosts limit:1 %}
+
{{ post.date | date: "Dernière news le %-d %B %Y" }} :
+
+
{{ post.title }}
+ {% endfor %}
+ {% endif %}
+
+ {% if page.lang == "en" %}
+ {% assign enPosts = site.posts | where: 'lang', 'en' %}
+ {% for post in enPosts limit:1 %}
+
{{ post.date | date: "The last news on %-d %B %Y" }}:
+
+
{{ post.title }}
+ {% endfor %}
+ {% endif %}
+