Expose tag count to theme template

This commit is contained in:
Jiachen Yang 2014-12-01 18:08:24 +09:00
commit a9148776a2

View file

@ -572,7 +572,8 @@ class ArticlesGenerator(CachingGenerator):
(
tag,
int(math.floor(steps - (steps - 1) * math.log(count)
/ (math.log(max_count)or 1)))
/ (math.log(max_count)or 1))),
count
)
for tag, count in tag_cloud
]