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.

index.html.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>