fix tag page generation.

This commit is contained in:
chris 2014-02-09 19:52:54 +01:00
parent 7bf1026be0
commit fe9af95b52
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ def generate():
generate_feed(posts)
# generate tag pages
for tag in tags:
for tag in tags.values():
write_file(
os.path.join(config.outputdir, 'tags', '{}.html'.format(tag.name)),
generate_index(tag.posts, pages)