From cf2f49771da0a47e563f327d2a27fa2efcf7530e Mon Sep 17 00:00:00 2001 From: Anxhelo Lushka Date: Tue, 1 May 2018 22:52:40 +0200 Subject: [PATCH] New page for tag collection --- tags/index.html | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tags/index.html 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 %}