This repository has been archived by the owner on Aug 31, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathindex.html
116 lines (107 loc) · 5.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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<meta name="description" content="description of your site">
<meta name="author" content="author of the site">
<title>remoteStorage – An open protocol for per-user storage</title>
<link rel="stylesheet" href="/css/highlight/monokai.css">
<link rel="stylesheet" href="/css/screen.css">
<link rel="shortcut icon" href="/favicon.png">
<link rel="apple-touch-icon-precomposed" href="/favicon-touch.png"><script src="/js/vendor/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
</head>
<body>
<div id="wrapper">
<header>
<div class="container">
<div class="logo">
<h1><a href="/">remoteStorage</a></h1>
</div>
<nav>
<ul>
<li class="get"><a href="https://wiki.remotestorage.io/Servers">Get Storage</a></li>
<li class="integrate"><a href="/integrate">Developers</a></li>
<li class="provide"><a href="/provide">Providers</a></li>
<li class="community"><a href="/community">Community</a></li>
<li class="guides"><a href="http://community.remotestorage.io">Forums</a></li>
<li class="spec"><a href="https://datatracker.ietf.org/doc/draft-dejong-remotestorage/">Spec</a></li>
</ul>
</nav>
</div>
</header>
<div id="wrapper-content">
<div class="hero">
<div class="container">
<section class="content">
<h2>remoteStorage</h2>
<p class="claim">An open protocol for per-user storage</p>
<p class="specs"><a title="Discover per-user services from a 'user@host' identifier">Webfinger</a> + <a title="Give an app access to certain parts of your storage account">OAuth</a> + <a title="Cross-origin AJAX requests">CORS</a> + <a title="GET, PUT and DELETE files in folders on your storage">REST</a></p>
</section>
</div>
</div>
<div class="container">
<section class="content">
<div class="benefits">
<section class="freedom">
<h3>Own your data</h3><p>Everything in one place – your place. Use a storage account with a
provider you trust, or set up your own storage server. Move house
whenever you want. It's your data.</p>
</section>
<section class="sync">
<h3>Stay in sync</h3><p>remoteStorage-enabled apps automatically sync your data across all
of your devices, from desktop to tablet to smartphone, and even your TV.</p>
</section>
<section class="sync">
<h3>Compatibility & choice</h3><p>Use the same data across different apps. Create a to-do list in one
app, and track the time on your tasks in another one. Say goodbye to data
silos.</p>
</section>
</div>
<div class="benefits">
<section class="offline">
<h3>Go offline</h3><p>Offline support is built into remoteStorage.js by default. Use your
apps offline on the go, and automatically sync when you're back online.</p>
</section>
<section class="freedom">
<h3>Backend as a Service</h3><p>Develop your web app without worrying about hosting or even developing
the backend for it: your users will connect their own backend at runtime.</p>
</section>
<section class="freedom">
<h3>New apps come prefilled</h3><p>When using an app for the first time, you don't have to go through profile
setup; start using the app straight away, with all your existing user data.</p>
</section>
</div>
</section>
</div>
<!-- ugly hack:-->
<div class="space"> </div>
</div>
</div>
<footer>
<div class="container">
<p class="copyright">© 2015 <a href="https://github.com/remotestorage?tab=members">remoteStorage contributors</a>, <a href="http://creativecommons.org/licenses/by/3.0/">CC-BY</a><span class="divider">·</span><a href="https://github.com/remotestorage/remotestorage.io">Fork this website</a></p>
<p class="actions"><a href="https://twitter.com/remotestorage_" data-dnt="true" data-show-count="false" data-lang="en" class="twitter-follow-button">Follow @remotestorage_</a></p>
</div>
</footer>
</body>
<script data-main="/js/main" src="/js/require.js">
//- add other scripts through require.js, not here
</script>
<script>
!function(d,s,id){var js,fjs=d.getElementsByTagName(s)[0];if(!d.getElementById(id)){js=d.createElement(s);js.id=id;js.src="//platform.twitter.com/widgets.js";fjs.parentNode.insertBefore(js,fjs);}}(document,"script","twitter-wjs");
</script>
<script>
if (window.location.href.match(/remotestorage\.io/)) {
var _paq = _paq || []; _paq.push(["trackPageView"]); _paq.push(["enableLinkTracking"]);
(function() {
var u="https://analytics.5apps.com/";
_paq.push(["setTrackerUrl", u+"piwik.php"]);
_paq.push(["setSiteId", "5"]);
var d=document, g=d.createElement("script"), s=d.getElementsByTagName("script")[0]; g.type="text/javascript";
g.defer=true; g.async=true; g.src=u+"piwik.js"; s.parentNode.insertBefore(g,s);
})();
}
</script>
</html>