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/categories.html | 40 ---------------------------------------- 1 file changed, 40 deletions(-) delete mode 100644 _includes/categories.html (limited to '_includes/categories.html') diff --git a/_includes/categories.html b/_includes/categories.html deleted file mode 100644 index 7f1e4cd..0000000 --- a/_includes/categories.html +++ /dev/null @@ -1,40 +0,0 @@ -{% assign entries_with_categories = "" | split:"" %} -{% for entry in site[include.kind] %} - {% if entry.lang == page.lang %} - {% if entry.eu_categories %} - {% assign entries_with_categories = entries_with_categories | push:entry %} - {% endif %} - {% endif %} -{% endfor %} -{% assign entries_with_categories = entries_with_categories | reverse %} - -{% assign categories = "" | split:"" %} -{% for entry in entries_with_categories %} - {% assign entry_categories = entry.eu_categories | split:"," %} - {% for entry_category in entry_categories %} - {% assign categories = categories | push:entry_category %} - {% endfor %} -{% endfor %} - -{% assign unique_categories = categories | sort | uniq %} -{% for category in unique_categories %} - {% assign feed_link = "feed." | append:include.kind | append:"-by-category." | append:page.lang | append:"." | append:category | append:".atom" | replace:" ", "-" %} -

- {{ category }} - - {{ site.t.alt.atom[page.lang] }} - -

- -{% endfor %} -- cgit v1.2.3