crazy-toads.github.io/syspages/tags.md

1.7 KiB

layout title permalink description comments sitemap category
page Tag Cloud /tags/ Browse website by tag based index false false base

{:.text-center}

Featured Posts


{% comment %} Tag generation is experimental and dynamic size for tag box may need to be adjusted if you have more than 100 posts with one or two frequently occurring tags. Also,all for loop operations will increase site build time. {% endcomment %}

{% capture site_tags %}{% for tag in site.tags %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endfor %}{% endcapture %} {% assign tags_list = site_tags | split:',' | sort %}

    {% for item in (0..site.tags.size) %}{% unless forloop.last %} {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}
  • {{ this_word }} {{ site.tags[this_word].size }}
  • {% endunless %}{% endfor %}

{% for item in (0..site.tags.size) %}{% unless forloop.last %} {% capture this_word %}{{ tags_list[item] | strip_newlines }}{% endcapture %}

{{ this_word }}

    {% for post in site.tags[this_word] %}{% if post.title != null %}
  • {{ post.title }}
  • {% endif %}{% endfor %}
{% endunless %}{% endfor %}