Skip to content

Commit

Permalink
Update tagcloud.html
Browse files Browse the repository at this point in the history
  • Loading branch information
ibbsbbr authored Jul 15, 2024
1 parent 203fd05 commit b00683f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions _includes/_helper/tagcloud.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@

{% comment %} tagcloud {% endcomment %}
<ul class="tagcloud-list" style="list-style: none; padding: 0; font-family: 'BitPotionExt'; display: flex; flex-direction: column;">
{% assign tags_list = site.tags | sort %}
{% for tag in tags_list %}
{% assign tags_list = site.tags %}
{% assign sorted_tags = tags_list | sort: "size" %}
{% for tag in sorted_tags %}
{% assign tag_name = tag[0] %}
{% assign tag_count = tag[1].size %}
{% assign tag_url = tag_name | slugify %}
Expand Down

0 comments on commit b00683f

Please sign in to comment.