-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblogTags.html
More file actions
31 lines (27 loc) · 818 Bytes
/
blogTags.html
File metadata and controls
31 lines (27 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
layout: default
title: "Blog: Classier Twitter threads - Tagy - Filip Procházka"
permalink: /blog/tags
sitemap:
exclude: 'yes'
---
<div class="blog-tags">
<div class="row">
<h1 class="motto col-xs-12 col-lg-11 offset-lg-1">
Blog: Classier Twitter threads - Tagy
</h1>
</div>
<div class="row tag-cloud">
<div class="col-md-9 offset-md-1">
{% assign sorted_tags = site.tags | sort_tags_by_posts_count %}
{% for tag in sorted_tags %}
<span class="article-tag">
<a href="/{{ site.tag_page_dir }}/{{ tag[0] | slugify: 'latin' }}/">
{{ tag[0] }}
<span class="tag-articles-count">({{ tag[1] }})</span>
</a>
</span>
{% endfor %}
</div>
</div>
</div>