-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
111 lines (103 loc) · 4.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta name="robots" content="index,follow">
<meta name="description" content="Docile is an open source JavaScript library for use in the browser. Learn more about what Docile can do, and download it.">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Raleway|Roboto">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.1.1/css/bootstrap.min.css">
<title>Get Docile - Docile JavaScript Library</title>
<style>
html {
margin: 0;
padding: 0;
font-family: 'Roboto', 'Raleway', Arial, Helvetica, sans-serif;
}
html, body {
background-color: #eaeaea;
}
.raleway {
font-family: 'Raleway', 'Roboto', Arial, Helvetica, sans-serif;
}
.consolas {
font-family: Consolas, monospace, 'Roboto', Arial, sans-serif;
}
.center {
text-align: center;
width: 100%;
}
</style>
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-72546719-13"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-72546719-13');
</script>
</head>
<body class="container">
<br>
<h1 class="raleway center">Docile</h1>
<h3 class="center">A Smarter DOM</h3>
<hr>
<div class="btn-group center">
<a href="https://github.com/russellsteadman/docile" class="btn btn-outline-dark center">View On GitHub</a>
<a href="https://github.com/russellsteadman/docile/zipball/master" class="btn btn-outline-dark center">Download ZIP</a>
</div>
<hr>
<div>
<h3 class="raleway">What is Docile?</h3>
<p>
Docile is an open source JavaScript library for use in the browser.
<br>
Docile can:
<ul class="list-group">
<li class="list-group-item">Store and retrieve data about nodes, including objects. <a href="https://github.com/russellsteadman/docile#docileset">Learn More</a></li>
<li class="list-group-item">Store and retrieve "links" to other nodes. <a href="https://github.com/russellsteadman/docile#docilelink">Learn More</a></li>
<li class="list-group-item">Retrieve the data of "linked" nodes. <a href="https://github.com/russellsteadman/docile#linkinstancegetdata">Learn More</a></li>
</ul>
</p>
</div>
<div>
<h3 class="raleway">How can I use Docile in my project?</h3>
<p>
Docile is simple to download.
<br>
<ul class="list-group">
<li class="consolas list-group-item">npm install -S docile</li>
<li class="consolas list-group-item">yarn add docile</li>
<li class="consolas list-group-item">bower install -S docile</li>
<a class="list-group-item list-group-item-action" href="https://github.com/russellsteadman/docile/releases">Download From GitHub</a>
<a class="list-group-item list-group-item-action" href="https://unpkg.com/docile@latest/dist/docile.js">Unpkg CDN</a>
</ul>
</p>
</div>
<div>
<h3 class="raleway">How is Docile licensed?</h3>
<p>
Docile is open source and licensed under a MIT license. <a href="https://github.com/russellsteadman/docile/blob/master/LICENSE">Learn More</a>
</p>
</div>
<div>
<h3 class="raleway">Does Docile have performance tests?</h3>
<p>
Yes.
<br>
<div class="btn-group center">
<a href="/test/" class="btn btn-outline-primary center">Main</a>
<a href="/test/webpack.html" class="btn btn-outline-success center">With Webpack</a>
</div>
</p>
<div class="text-center">
<a href="https://saucelabs.com/"><img src="/test/sauce/saucelabs.png" alt="Sauce Labs"></a>
</div>
<p>Testing powered by <a href="https://saucelabs.com/">Sauce Labs</a>.</p>
</div>
<hr>
<p>
Copyright © 2020 Russell Steadman. Some Rights Reserved. This website is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">Creative Commons Attribution 4.0 International License</a>.
</p>
</body>
</html>