diff options
author | Pranshu Sharma <pranshu@pebl> | 2024-12-13 01:02:38 +1000 |
---|---|---|
committer | Pranshu Sharma <pranshu@pebl> | 2024-12-13 01:02:38 +1000 |
commit | 375204f6a5e76ea1629f61628a3f9537969e3774 (patch) | |
tree | d2b9b7bec13da3541cb57f39842feaaeb0bf0f12 /bq |
Inital commit
Diffstat (limited to 'bq')
-rw-r--r-- | bq/index.html | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/bq/index.html b/bq/index.html new file mode 100644 index 0000000..464988b --- /dev/null +++ b/bq/index.html @@ -0,0 +1,45 @@ +<!DOCTYPE html> +<html lang="en"> +<head> + <meta charset="UTF-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <link rel="stylesheet" href="/style.css"> +<style> +main img { + border: 0.2em solid black; + padding: 0.2em; +} +</style> + <title>bq</title> +</head> +<body> + <header> + <h1>bq</h1> + <blockquote>Small, Fast, Performant</blockquote> + <img src="/img/ornament.svg" type="svg" id="ornament"/> + <header> + + <main> + <section id="projects"> + <div class="project"> + <p><em>Author: <a href=//c.bauherren.ovh>Christos</a></em></p> + <br> + <h3>What is bq?</h3> + <p>bq is a line-oriented editor, born out of my frustration with the number of operations <pre>ed</pre> required for simple edits. + <h3>What isn't bq</h3> + <p>bq is not a replacement for vim/emacs. bq will never take part in the editor arms-race. +<br> + <h3>Why bq?</h3> + <p>bq is for short and snappy editing, for occasions in which firing up an editor and filling your screens with content isn't practical. + <h4>Coming soon!</h4> + </div> + </section> + </main> + + <footer> + <img src="/img/footer.svg" type="svg" width="25%;"/> + </footer> + +</body> +</html> |