1234567891011121314151617181920212223242526272829303132333435363738 |
- {{define "404"}}
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1.0">
- <title>404 Not Found</title>
- <style>
- body {
- display: flex;
- justify-content: center;
- align-items: center;
- flex-direction: column;
- background-color: rgb(232, 255, 247);
- font-family: sans-serif;
- }
- b {
- color: rgb(173, 255, 228);
- font-size: 50vh;
- font-weight: bold;
- }
- div {
- font-size: 20px;
- color: cadetblue;
- }
- </style>
- </head>
- <body>
- <b>404</b>
- <div>Sorry, page not found.</div>
- </body>
- </html>
- {{end}}
|