whitebophir/client-data/index.html

89 lines
2.8 KiB
HTML
Raw Normal View History

2014-02-22 20:39:41 +00:00
<!DOCTYPE html>
2019-06-27 13:44:16 +00:00
<html lang="en">
2019-06-23 21:56:07 +00:00
2014-02-22 20:39:41 +00:00
<head>
<meta charset="utf-8" />
2018-11-28 14:04:47 +00:00
<title>WBO — Online collaborative whiteboard</title>
2018-11-27 13:46:57 +00:00
<link rel="stylesheet" href="index.css" />
2019-06-23 21:56:07 +00:00
<meta name="description"
content="A free online whiteboard for realtime collaboration. Draw, write text and sketch new ideas together on whitebophir" />
2020-04-18 20:09:48 +00:00
<meta name="keywords"
content="whiteboard,collaborative,online,draw,paint,shared,realtime,wbo,whitebophir,open-source,GPL,javascript" />
2019-05-01 15:50:53 +00:00
<link rel="icon" type="image/x-icon" sizes="16x16" href="favicon.ico">
2018-11-28 14:04:47 +00:00
<link rel="apple-touch-icon" href="favicon.svg">
<link rel="mask-icon" href="favicon.svg" color="black">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2020-03-21 21:18:56 +00:00
<link rel="canonical" href="https://wbo.ophir.dev/" />
2020-04-18 20:09:48 +00:00
<meta property="og:url" content="https://wbo.ophir.dev">
2014-02-22 20:39:41 +00:00
</head>
<body>
2019-06-23 21:56:07 +00:00
<header>
2020-04-18 20:09:48 +00:00
<h1>WBO</h1>
2020-04-21 23:12:50 +00:00
<nav class="lang-selector">
<span>{{language}}</span>
<ul>
{{#languages}}
<li><a href="?lang={{.}}">{{.}}</a></li>
{{/languages}}
</ul>
</nav>
2019-06-23 21:56:07 +00:00
</header>
<main>
<div id="description">
2020-04-21 23:12:50 +00:00
<h3>{{translations.tagline}}</h3>
2019-06-23 21:56:07 +00:00
<p>
WBO is a
2020-04-18 20:09:48 +00:00
<a href="https://github.com/lovasoa/whitebophir"
title="Free as in free speech, not free beer. This software is released under the GPL license">free
and open-source</a>
2019-06-23 21:56:07 +00:00
online collaborative whiteboard that allows many users to draw
simultaneously on a large
virtual board.
The board is updated in real time for all connected users, and its state is always persisted.
It can be used for many different purposes, including art, entertainment, design and teaching.
</p>
<p>
To collaborate on a drawing in real time with someone, just send them its URL.
</p>
</div>
<div>
<p>
2020-04-19 17:41:26 +00:00
The <strong>public board</strong> is accessible to everyone.
It is a happily disorganized mess where you can meet with anonymous strangers and draw together.
2019-06-23 21:56:07 +00:00
Everything there is ephemeral.
</p>
2020-04-19 17:41:26 +00:00
<a href="/boards/anonymous" class="wbo-button">Go to the public board</a>
2019-06-23 21:56:07 +00:00
</div>
<div>
2020-04-19 17:41:26 +00:00
<p>You can create a <strong>private board</strong> with a random name, that will be accessible only by its
link.
Use this if you want to share private information.
</p>
<a href="/random" class="wbo-button">Create a private board</a>
</div>
<div>
<p>
You can also create a <strong>named private board</strong>,
with a custom URL,
that will be accessible to all those who know its name.
</p>
2019-06-23 21:56:07 +00:00
<form action="boards" method="GET">
<input type="text" id="board" name="board" placeholder="Name of the board..." />
<input type="submit" value="Go">
</form>
</div>
</main>
<footer>
<a href="https://github.com/lovasoa/whitebophir" class="smallink">Source code on github</a>
</footer>
2014-02-22 20:39:41 +00:00
</body>
2020-04-18 20:09:48 +00:00
</html>