The backend of a gist server written in Rust
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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>