-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
68 lines (60 loc) · 2.14 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<title>VanillaStorage.js</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description"
content="VanillaStorage.js - cross platform client side storage abstraction"/>
<meta name="keywords"
content="atonego app todo todoapp todolist reminder notice forgot sync share team productivity aufgaben erledigen vergessen merkzettel">
<link rel="stylesheet" href="utils/foundation.css" />
</head>
<body>
<header>
<div class="row">
<div class="large-12 columns">
<h1 class="text-center">VanillaStorage.js</h1>
<hr>
<h3 class="subheader">Simple key/value based storage abstraction lib for usage in browser
based environments. Uses IndexedDB with fallback to [deprecated but
still widely supported and needed] WebSQL.</h3>
<hr>
<p class="text-center">Check out the code & docs on
<a href="https://github.com/mwager/VanillaStorage">github</a></p>
<p class="text-center">Watch the tests <a href="./test">here</a> or on
<a href="https://travis-ci.org/mwager/VanillaStorage">travis</a></p>
</div>
</div>
</header>
<!--
<section role="main">
<div class="row">
<div class="large-12 columns">
<hr>
<div id="markdown-content">markdown goes here</div>
</div>
</div>
</section>
<script type="text/javascript" src="http://zeptojs.com/zepto.js"></script>
<script type="text/javascript" src="test/lib/markdown.min.js"></script>
<script type="text/javascript">
// include the markdown of the readme...
$(function() {
var log = function() {
console && console.log.apply(console, arguments)
}
$.get('readme.md', function(markdownFromReadme) {
try {
var html = window.markdown.toHTML(markdownFromReadme);
} catch(e) {
log(e)
}
// log(html)
$('#markdown-content').html(html)
})
})
</script>
-->
</body>
</html>