-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (98 loc) · 5.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
110
111
112
<!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">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<meta name="description" content="">
<meta name="author" content="">
<link rel="icon" href="./assets/img/favicon.ico">
<title>Nearspeak - Open Source</title>
<!-- Bootstrap core CSS -->
<link href="./dist/css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="nearspeak.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy these 2 lines! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<script src="./assets/js/ie-emulation-modes-warning.js"></script>
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,400,300,600,700" rel="stylesheet" type="text/css">
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-65647209-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<nav class="navbar navbar-default 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="https://www.nearspeak.at">
<img style="max-width:134px; margin-top: -7px;" src="./assets/img/[email protected]">
</a>
</div>
<div id="navbar" class="collapse navbar-collapse">
<ul class="nav navbar-nav">
<li class="active"><a href="#">Overview</a></li>
<li><a href="#ios-sdk">iOS</a></li>
<li><a href="#android-sdk">Android</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</nav>
<div class="container">
<div class="intro-page">
<header>
<h1>Open Sourcing Nearspeak</h1>
<p class="lead">We are very excited to announce that we are making the Nearspeak platform open source.</p>
</header>
<div id="ios-sdk">
<h2>iOS SDK</h2>
<p>The iOS SDK can be found at <a href="https://github.com/nearspeak/iOS-SDK">https://github.com/nearspeak/iOS-SDK</a>.</p>
<p>The iOS SDK documentation can be found at <a href="./ios-docs/index.html">https://nearspeak.github.io/ios-docs</a>.</p>
</div>
<div id="android-sdk">
<h2>Android SDK</h2>
<p>The Android SDK can be found at <a href="https://github.com/nearspeak/Android-SDK">https://github.com/nearspeak/Android-SDK</a>.</p>
</div>
<div id="backend">
<h2>Backend Ruby Server</h2>
<p>The backend server source code can be found at <a href="https://github.com/nearspeak/Backend">https://github.com/nearspeak/Backend</a>.</p>
<p>The API documentation can be found at <a href="./backend-docs/api/index.html">https://nearspeak.github.io/backend-docs/api/</a>.</p>
<p>Ther server documentation can be found at <a href="./backend-docs/backend/index.html">https://nearspeak.github.io/backend-docs/backend/</a>.</p>
</div>
<div id="open-source-development">
<h2>Open Source Development</h2>
<p>We will continue to develop our SDKs in the open, for the time being. This means that we directly push changes to the public repositories.</p>
<p>We are not expecting major contributions from the community, but would love to hear what you think about our SDKs, code and design! Pull requests and issues are definitely welcome.</p>
</div>
</div>
</div><!-- /.container -->
<footer class="footer">
<div class="container">
<p class="text-muted">Made with ♡ by <a href="http://www.mopius.com">mopius.com</a></p>
</div>
</footer>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script src="./dist/js/bootstrap.min.js"></script>
<!-- IE10 viewport hack for Surface/desktop Windows 8 bug -->
<script src="./assets/js/ie10-viewport-bug-workaround.js"></script>
</body>
</html>