forked from cabal-club/cabal-club.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
109 lines (87 loc) · 4.08 KB
/
index.html
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!DOCTYPE html>
<html lang='en'>
<head>
<title>cabal</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0 />
<meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
<meta name="description" content="p2p chat" />
<link rel="stylesheet" type="text/css" href="css/fonts/nitti.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/ibmplexmono.css" />
<link rel="stylesheet" type="text/css" href="css/fonts/ibmplexsans.css" />
<!--<link rel="stylesheet" type="text/css" href="/css/footer.css"/>-->
<link rel="stylesheet" type="text/css" href="css/style.css" />
<style type="text/css">
.no-fouc {display: none;}
</style>
<script type="text/javascript">
document.documentElement.className = 'no-fouc';
</script>
</head>
<body class="landing">
<header><div class="header-wrapper"><div class="inner-wrapper">
<nav id="navBar" class="no-js nav-bar">
<div id='overlay'></div>
<a class="nav-logo" href="/" aria-label="Cabal homepage"></a>
<div class="nav-right">
<div class="nav-links">
<ul>
<li class="alt"><a class="button uppercase" href="download.html" role="button">download</a></li>
<li class="alt"><a class="button uppercase" href="faq.html" role="button">faq</a></li>
<li class="alt"><a class="button uppercase" href="https://github.com/cabal-club" role="button">source code</a></li>
</ul>
</div>
</div>
</nav>
</div></div></header>
<main class="content">
<div class="wrapper">
<section class="light"><div class="section-wrapper"><div class="columns">
<div>
<h1>cabal</h1>
<h2 class="h2-homepage">experimental p2p community<br />chat platform</h2>
</div>
<div>
<ul id='guide'>
<li><b>Desktop:</b> <a href="https://github.com/cabal-club/cabal-desktop/releases">cabal-desktop</a></li>
<li><b>Terminal:</b> <code><a href="https://nodejs.org">npm</a> install --global cabal</code></li>
<li><b>Source:</b> <a href='https://github.com/cabal-club'>git</a></li>
<li><b>Values:</b> <a href="https://github.com/cabal-club/commons/blob/master/values.md#values">Community values</a></li>
<hr/>
<li><b>FAQ:</b> <a href="faq.html">Frequently Asked Questions</a></li>
<hr/>
<li><b>IRC:</b> <a href='https://kiwi.freenode.net/#cabal.club'>irc://irc.freenode.net/#cabal.club</a></li>
</ul>
</div></div></section>
<section id="public">
<h2>Join the cabal public chat</h2>
<h3 class="selectable">cabal://1fdc83d08699781adfeacba9aa6bb880203d5e61357e5667ccbcc12e4a9065ad?admin=e514b730c779920c495b4b3de33ee3e418058798a6a2af0cfd7e1507ecb18e47</h3>
<p>Enter this key into any cabal client to join the public cabal.</p>
<p><i>Cabal is super young, and while we try to dogfood it as we develop it, sometimes things break. If they do, please join us on freenode.net IRC in #cabal.club and let us know!</i></p>
</section>
<section id="about" class="default"><div class="section-wrapper"><div class="columns">
<div>
<h2>ABOUT cabal</h2>
<p>No servers are needed to join a cabal, or to start your own. Everything
is stored and runs locally. A cabal can never go down or be taken
away.</p>
<p>A cabal is identified by its secret key
(<code>cabal://7d99b453506b974...</code>) that you share with your
friends. This key lets them <i>find</i> and <i>join</i> the cabal.</p>
<p>Cabal works over the internet, but also lets you chat over the local
network. If offline, you can still browse your full chat history, and send
messages that will be sync'd with any future peers you connect to.</p>
</div>
<div style="margin-right:-250px; width:800px">
<img src="desktop.png" alt="desktop app" width="600px"/>
</div>
</div></div></section>
</main>
<script>
window.addEventListener("load", function(e) {
document.documentElement.className = '';
});
</script>
<!-- website forked from https://handshake.org (MIT) -->
</body>
</html>