diff --git a/page/2tags.html b/page/2tags.html index eac7f2b..f2a8c9e 100644 --- a/page/2tags.html +++ b/page/2tags.html @@ -10,13 +10,11 @@

{{page.title}}


- {% capture tags %} - {% for tag in site.tags %} - {{ tag[0] }} - {% endfor %} - {% endcapture %} - {% assign sortedtags = tags | split:' ' | sort %} - + {% assign alltags = '' | split: '' %} + {% for tag in site.tags %} + {% assign alltags = alltags | push: tag[0]%} + {% endfor %} + {% assign sortedtags = alltags | sort %}