Compare commits

...

No commits in common. "1684b8d3d6ef7c30cb8e894d90814680dca62482" and "4674f6a0dd78b283cb0376822e5694024bc15460" have entirely different histories.

1 changed files with 1 additions and 1 deletions

View File

@ -86,7 +86,7 @@ if __name__ == '__main__':
if not os.path.exists(dst_dir):
os.mkdir(dst_dir)
[render_article(a.path, dst_dir, hostname) for a in entries]
index = render_index(entries)
index = render_index(entries, hostname)
with open(os.path.join(dst_dir, "index.gmi"), 'w') as f:
print(index, file=f)
else: