404.html 762 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. {{define "404"}}
  2. <!DOCTYPE html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="UTF-8">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title>404 Not Found</title>
  8. <style>
  9. body {
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. flex-direction: column;
  14. background-color: rgb(232, 255, 247);
  15. font-family: sans-serif;
  16. }
  17. b {
  18. color: rgb(173, 255, 228);
  19. font-size: 50vh;
  20. font-weight: bold;
  21. }
  22. div {
  23. font-size: 20px;
  24. color: cadetblue;
  25. }
  26. </style>
  27. </head>
  28. <body>
  29. <b>404</b>
  30. <div>Sorry, page not found.</div>
  31. </body>
  32. </html>
  33. {{end}}