The backend of a gist server written in Rust
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

404.html.tera 465B

123456789101112131415161718192021222324252627
  1. <html>
  2. <head>
  3. <title>404 not found</title>
  4. <meta name="viewport" content="width=device-width">
  5. <style>
  6. .container {
  7. margin: auto;
  8. max-width: 800;
  9. }
  10. .header,
  11. .body {
  12. padding: 0 15px;
  13. }
  14. </style>
  15. </head>
  16. <body>
  17. <div class="container">
  18. <h1 class="header">
  19. 404 not found
  20. </h1>
  21. <p class="body">
  22. <a href="/">home</a>
  23. </p>
  24. </div>
  25. </body>
  26. </html>