git ssb

0+

Grey the earthling / gkn.me.uk



Tree: 743afdfcf9384f8652fd5740f5a1550fd4f3eaeb

Files: 743afdfcf9384f8652fd5740f5a1550fd4f3eaeb / generator / templates / error.py

739 bytesRaw
1import common
2
3
4def 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