diff options
Diffstat (limited to '_includes/functions/get_categories.html')
-rw-r--r-- | _includes/functions/get_categories.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/_includes/functions/get_categories.html b/_includes/functions/get_categories.html new file mode 100644 index 0000000..babb7a0 --- /dev/null +++ b/_includes/functions/get_categories.html @@ -0,0 +1,12 @@ +{% assign split_mark = '<|>' %} + +{% assign categories = '' %} +{% for category in site.categories %} + {% assign name = category | first %} + {% assign categories = categories | append: split_mark | append: name %} +{% endfor %} + +{% assign return = categories + | remove_first: split_mark + | split: split_mark + | sort: self %} |