summaryrefslogtreecommitdiff
path: root/_includes/i18n-date.html
diff options
context:
space:
mode:
Diffstat (limited to '_includes/i18n-date.html')
-rw-r--r--_includes/i18n-date.html20
1 files changed, 0 insertions, 20 deletions
diff --git a/_includes/i18n-date.html b/_includes/i18n-date.html
deleted file mode 100644
index c57d93b..0000000
--- a/_includes/i18n-date.html
+++ /dev/null
@@ -1,20 +0,0 @@
-{% capture i18n_month %}
-{% assign m = include.date | date: "%-m" | minus: 1 %}
-{{ site.t.months[page.lang][m] }}
-{% endcapture %}
-{% if page.lang == "en" %}
- {% comment %}
- handcrafting the "%B %-d, %Y" date format
- {% endcomment %}
- {{ i18n_month }}{{ include.date | date: "%-d, %Y" }}
-{% elsif page.lang == "pt" %}
- {% comment %}
- 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 %}