fix tag page generation.
This commit is contained in:
parent
7bf1026be0
commit
fe9af95b52
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Reference in a new issue