aboutsummaryrefslogtreecommitdiff
path: root/_includes/i18n-date.html
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2020-08-16 09:26:08 -0300
committerEuAndreh <eu@euandre.org>2020-08-16 10:16:26 -0300
commit7c4bddbcc3a0d576fea6390dacc0d56285824210 (patch)
treebcde65e667611c46c7e5e5f96acc8f3f0381631c /_includes/i18n-date.html
parentTIL on searching in git: Make quoting of '<regexp>' consistent (diff)
downloadeuandre.org-7c4bddbcc3a0d576fea6390dacc0d56285824210.tar.gz
euandre.org-7c4bddbcc3a0d576fea6390dacc0d56285824210.tar.xz
i18n: Ajouter le support pour la version française
Diffstat (limited to '_includes/i18n-date.html')
-rw-r--r--_includes/i18n-date.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/_includes/i18n-date.html b/_includes/i18n-date.html
index 5fa30b4..c57d93b 100644
--- a/_includes/i18n-date.html
+++ b/_includes/i18n-date.html
@@ -12,4 +12,9 @@
handcrafting the "%-d de %B de %Y" date format
{% endcomment %}
{{ include.date | date: "%-d de " }}{{ i18n_month }}{{ include.date | date: " de %Y" }}
+{% elsif page.lang == "fr" %}
+ {% comment %}
+ handcrafting the "%-d de %B de %Y" date format
+ {% endcomment %}
+ {{ include.date | date: "%-d de " }}{{ i18n_month }}{{ include.date | date: " de %Y" }}
{% endif %}