From cfd0246b241cb6e58153e68f7e30ed56b9bf054b Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Sun, 17 Nov 2024 20:15:02 -0300 Subject: Remove jekyll infrastructure setup --- _includes/i18n-date.html | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 _includes/i18n-date.html (limited to '_includes/i18n-date.html') 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 %} -- cgit v1.2.3