๐Ÿก index : old_projects/debreader.github.io.git

---
layout: page
title: Tags
---

{% assign alldocs = site.documents %}
{% assign alltags =  alldocs | map: 'tags' | join: ','  | split: ','  | group_by: tag %}

<p>
  Articles on similar topics are grouped together by tags. Click on any tag to find all the articles 'tagged' with that tag.
</p>
<ul class="tag-box">
    {% for tag in alltags %}
    	<li><a href="#{{ tag.name | slugify }}">{{ tag.name }} <span>{{ tag.size }}</span></a></li>
    {% endfor %}
  {% assign tags_list = nil %}
</ul>

{% for tag in alltags %}
  <h2 class="nice-title" id="{{ tag.name }}">{{ tag.name }}</h2>
  <ul>
    {%- for document in alldocs -%}
      {% if document.tags contains tag.name %}
        <li><a href="{{ document.url }}">{{ document.title }}</a></li>
      {% endif %}
    {% endfor %}
  </ul>
{% endfor %}