blob: dad420036db54b80ac40367e9b5de515bec8bbaf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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>
|