diff --git a/tags/index.html b/tags/index.html new file mode 100644 index 0000000..473b17c --- /dev/null +++ b/tags/index.html @@ -0,0 +1,35 @@ +--- +layout: default +title: "#Tags" +permalink: /tags/index.html +--- + +
+{% assign tags_list = site.tags %} + {% if tags_list.first[0] == null %} + {% for tag in tags_list %} + {{ tag }} + {% endfor %} + {% else %} + {% for tag in tags_list %} + {{ tag[0] }} + {% endfor %} + {% endif %} +{% assign tags_list = nil %} +
+ +{% for tag in site.tags %} + {{ tag[0] }} + +{% endfor %}