Files: 305411b620accbb0d285152dac313c556e5c02c3 / generator / templates / error.py
739 bytesRaw
1 | import common |
2 | |
3 | |
4 | def html(code): |
5 | return common.print_html( |
6 | f"""<!doctype html> |
7 | <html> |
8 | <head> |
9 | {common.head} |
10 | <title>Page Not Found</title> |
11 | </head> |
12 | <body class="{common.colour_class}"> |
13 | <header> |
14 | <h1>Page Not Found</h1> |
15 | </header> |
16 | <footer> |
17 | <hr/> |
18 | <nav> |
19 | <ul> |
20 | <li>{common.link_home}</li> |
21 | </ul> |
22 | </nav> |
23 | </footer> |
24 | </body> |
25 | </html> |
26 | """ |
27 | ) |
28 |
Built with git-ssb-web