-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
90 lines (81 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>The Cryptosphere: Encrypted P2P Web Application Platform</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="The Cryptosphere provides an encrypted peer-to-peer application platform for HTML5/JS applications">
<meta name="author" content="Tony Arcieri">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="ico/apple-touch-icon-57-precomposed.png">
<link rel="shortcut icon" href="ico/favicon.png">
</head>
<body>
<nav class="navbar navbar-inverse navbar-fixed-top">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">CRYPTOSPHERE</a>
</div>
<div id="navbar" class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="/">Home</a></li>
<li><a href="https://github.com/cryptosphere/cryptosphere">Github</a></li>
<li><a href="https://github.com/cryptosphere/cryptosphere/wiki">Wiki</a></li>
<li><a href="https://github.com/cryptosphere/cryptosphere/wiki/FAQ">FAQ</a></li>
<li><a href="https://twitter.com/thecryptosphere">Twitter</a></li>
</ul>
</div><!--/.navbar-collapse -->
</div>
</nav>
<div class="jumbotron masthead">
<h1>The Web. Secured.</h1>
<p>
The Cryptosphere is an open-source P2P web application platform for
decentralized, privacy-preserving software which keeps users in control
of their own content.
</p>
<p><a href="https://github.com/cryptosphere/cryptosphere" class="btn btn-primary btn-large">Learn more »</a></p>
</div>
<div class="container">
<div class="row">
<div class="col-md-4">
<h2>Git-powered</h2>
<a href="https://git-scm.com/"><img src="img/git.png" alt="Git"></a>
<p>Uploading content to the Cryptosphere's peer-to-peer grid is just a "git push" away. Content is fully encrypted before ever leaving your computer.</p>
<p><a class="btn btn-default" href="https://git-scm.com/">Learn more »</a></p>
</div>
<div class="col-md-4">
<h2>In-Browser Sandboxing</h2>
<a href="https://github.com/tildeio/oasis.js"><img src="img/oasis.png" alt="Oasis"></a>
<p>HTML/JS applications loaded from the Cryptosphere are sandboxed in-browser using a capability-based security model.</p>
<p><a class="btn btn-default" href="https://github.com/tildeio/oasis.js">Learn more »</a></p>
</div>
<div class="col-md-4">
<h2>Modern Encryption</h2>
<a href="https://github.com/jedisct1/libsodium"><img src="img/libsodium.png" alt="libsodium"></a>
<p>State-of-the-art encryption ensures all content in the system is
kept confidential and free of tampering, even when stored on a
peer-to-peer grid.</p>
<p><a class="btn btn-default" href="https://github.com/jedisct1/libsodium">Learn more »</a></p>
</div>
</div>
<hr>
<footer>
<p>© 2011-2015 Tony Arcieri</p>
</footer>
</div> <!-- /container -->
<script src="/js/jquery-2.1.4.min.js"></script>
<script src="/js/bootstrap.min.js"></script>
<script src="/js/google-analytics.js"></script>
</body>
</html>