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 843B

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