404 handler

This commit is contained in:
2016-09-02 23:47:31 +02:00
parent 62ecacd2cd
commit f201d0f9ad
3 changed files with 10 additions and 1 deletions

View File

@@ -97,7 +97,7 @@ def markdown_to_html(input_file, output_dir):
pages.append((dir + '/' + uri,
os.path.normpath(os.path.join(base_dir, path, name))))
builtins = ['/', '/about/', '/about/niels', '/misc/']
builtins = ['/', '/about/', '/about/niels', '/misc/', '/404']
pages = filter(lambda t: t[0] not in builtins, pages)
pages_new = []
for page in pages: