--- title: Tags Index permalink: /tags/ excluded_in_search: true ---

Tags Index

{% capture site_tags %}{% for tag in site.tags %}{% if tag %}{{ tag | first }}{% unless forloop.last %},{% endunless %}{% endif %}{% endfor %}{% endcapture %}{% assign docs_tags = "" %}{% for doc in site.docs %}{% assign ttags = doc.tags | join:',' | append:',' %}{% assign docs_tags = docs_tags | append:ttags %}{% endfor %} {% assign all_tags = site_tags | append:docs_tags %}{% assign tags_list = all_tags | split:',' | uniq | sort %} {% for tag in tags_list %}{% if tag %}

{{ tag }}

{% for post in site.tags[tag] %}
{{- post.title -}}
{%- endfor -%} {% for doc in site.docs %}{% if doc.tags contains tag %}
{{ doc.title }}
{% endif %}{% endfor %}
{% endif %}{%- endfor -%}