-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·61 lines (55 loc) · 3.35 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Livenote is real-time document collaboration tool. Type any text and it will be in sync with all the clients. Start a new draft and share the URL with those with whom you want to work in real-time. Both can edit the document and changes are saved instantly.">
<title>LiveNote - Realtime document collaboration</title>
<!-- Bootstrap core CSS -->
<link href="//netdna.bootstrapcdn.com/bootstrap/3.1.0/css/bootstrap.min.css" rel="stylesheet">
<!-- Add custom CSS here -->
<link href="/public/css/style.css" rel="stylesheet">
</head>
<body>
<a href="https://github.com/theoctal/livenote" target="_blank"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/652c5b9acfaddf3a9c326fa6bde407b87f7be0f4/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f6f72616e67655f6666373630302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_orange_ff7600.png"></a>
<!-- Full Page Image Header Area -->
<div class="container">
<div class="jumbotron">
<img src="public/img/livenote.png" class="logo-img" alt="Livenote" >
<h2>LiveNote</h2>
<h3>Real-time document editing with live-sync* for collaboration.</h3>
<h4><em>* It syncs as you type, blazing fast.</em></h4>
<br/>
<!-- <h4 style="color:grey">Create a draft and share the link with your partner. Save/delete your draft and move on. Simple as that.</h4><br /> -->
<a href="#" rel="nofollow" id="create" class="btn btn-primary btn-lg">start new draft</a>
<script type="text/javascript">
var id = Math.random().toString(36).substr(2, 5) + new Date().valueOf().toString(16);
document.getElementById("create").href = id;
var ss = document.createElement("link");
ss.rel = "prerender";
ss.href = "/"+id;
document.getElementsByTagName("head")[0].appendChild(ss);
</script>
<br/>
<br/>
<p class="text-muted">Each draft has a secret unique link.</p>
<p class="text-muted">Share that link and add <em>multiple</em> collaborators (they can edit too).</p>
<p class="text-muted">Tell us how you LiveNote. Spread the love.</p>
</div>
<footer class="text-center">
<p><em>Lovingly created by</em><br />
<a target="_blank" href="https://twitter.com/adityapatadia">Aditya Patadia</a> &
<a target="_blank" href="https://twitter.com/pandyaofficial">Hardik Pandya</a><br />
For bugs/issues or queries: <a href="mailto:[email protected]">Mail us</a> or <a href="http://twitter.com/OctalHQ">@OctalHQ</a></p>
</footer>
</div>
<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-27931323-7', 'livenote.org');
ga('send', 'pageview');
</script>
</body>
</html>