krata/_includes/trending-tags.html

32 lines
694 B
HTML
Raw Normal View History

2020-05-09 18:28:18 +02:00
{% comment %}
The trending tags list
2020-01-02 14:17:49 +01:00
v2.0
https://github.com/cotes2020/jekyll-theme-chirpy
© 2019 Cotes Chung
MIT Licensed
2020-05-09 18:28:18 +02:00
{% endcomment %}
{% assign MAX = 10 %}
{% capture tags_array %}
{% for tag in site.tags %}
2020-05-09 18:28:18 +02:00
{{ tag[1] | size }}::{{ tag[0] | replace: ' ', '-' }}
{% endfor %}
{% endcapture %}
2020-05-09 18:28:18 +02:00
{% assign all_tags = tags_array | split: " " | sort | reverse %}
{% assign count = 0 %}
2020-05-09 18:28:18 +02:00
{% assign trending_tags = "" | split: "" %}
{% for iter in all_tags %}
{% assign count = count | plus: 1 %}
2020-05-09 18:28:18 +02:00
{% assign tag = iter | split: "::" | last %}
{% assign trending_tags = trending_tags | push: tag %}
{% if count >= MAX %}
{% break %}
{% endif %}
2020-05-09 18:28:18 +02:00
{% endfor %}