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.

index.tera 844B

12345678910111213141516171819202122232425262728
  1. <html>
  2. <head>
  3. <title>bngl.ws</title>
  4. <style>
  5. .container {
  6. margin: auto;
  7. max-width: 500px;
  8. }
  9. </style>
  10. <meta name="viewport" content="width=device-width">
  11. </head>
  12. <body>
  13. <div class="container">
  14. <h1>bngl.ws</h1>
  15. <p>
  16. bngl.ws is a pastebin service that you can access from the command
  17. line. If you have
  18. <a href="https://doc.rust-lang.org/cargo/getting-started/installation.html" target="_blank">
  19. cargo</a> installed, you can install the CLI client by cloning the
  20. <a href="https://git.sr.ht/~simulacrumparty/bnglws-client" target="_blank">client repo</a>
  21. and running
  22. <pre>cargo install --path .</pre>
  23. Then, you can create snippets by running something like
  24. <pre>echo 'Hello world' | bngl new "First snippet"</pre>
  25. </p>
  26. </div>
  27. </body>
  28. </html>