aboutsummaryrefslogtreecommitdiff
path: root/_includes/i18n-date.html
diff options
context:
space:
mode:
authorEuAndreh <eu@euandre.org>2024-11-17 20:15:02 -0300
committerEuAndreh <eu@euandre.org>2024-11-17 20:18:21 -0300
commitcfd0246b241cb6e58153e68f7e30ed56b9bf054b (patch)
tree206deba2cec12187e835c64b8a7172277be1a2cf /_includes/i18n-date.html
parentrm tests/assert-frontmatter.sh (diff)
downloadeuandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.gz
euandre.org-cfd0246b241cb6e58153e68f7e30ed56b9bf054b.tar.xz
Remove jekyll infrastructure setup
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 %}