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 1.1KB

1234567891011121314151617181920212223242526272829303132
  1. <html>
  2. <head>
  3. <title>bngl.ws</title>
  4. <link rel="stylesheet" href="/assets/style.css">
  5. <meta name="viewport" content="width=device-width">
  6. </head>
  7. <body>
  8. <div class="container container--narrow">
  9. <h1 class='header'>bngl.ws</h1>
  10. <p>
  11. bngl.ws is a pastebin service that you can access from the command line.
  12. </p>
  13. <h3 class="subheader">Installation</h3>
  14. <p>
  15. If you have
  16. <a href="https://doc.rust-lang.org/cargo/getting-started/installation.html" target="_blank">
  17. cargo</a> installed, you can install the CLI client by cloning the
  18. <a href="https://git.sr.ht/~simulacrumparty/bnglws-client" target="_blank">client repo</a>
  19. and running
  20. <pre class="shell">cargo install --path .</pre>
  21. If you don't have Cargo installed, there are precompiled binaries
  22. available for
  23. <a href="/assets/releases/x86_64-unknown-linux-gnu.tar.gz">Linux</a>
  24. and <a href="/assets/releases/x86_64-apple-darwin.tar.gz">Mac</a>.
  25. </p>
  26. <h3 class="subheader">Usage</h3>
  27. <p>
  28. <pre class="shell">echo 'Hello world' | bngl 'First Snippet'</pre>
  29. </p>
  30. </div>
  31. </body>
  32. </html>