-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
65 lines (54 loc) · 2.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
<!doctype html>
<!--
This file will load and render the markdown file directly in the browser using Flatdoc
-->
<html>
<head>
<meta charset='utf-8'>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width">
<title>Carloop Docs</title>
<!-- Flatdoc -->
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/legacy.js'></script>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/flatdoc.js'></script>
<!-- Flatdoc theme -->
<link href='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/style.css' rel='stylesheet'>
<script src='https://cdn.rawgit.com/rstacruz/flatdoc/v0.9.0/theme-white/script.js'></script>
<!-- Lightbox -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.1.20/jquery.fancybox.min.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/fancybox/3.1.20/jquery.fancybox.min.js"></script>
<!-- Custom styles and JavaScript -->
<link href='docs.css' rel='stylesheet'>
<script src='docs.js'></script>
<!-- Meta -->
<meta content="Carloop Documentation" property="og:title">
<meta content="Everything you need to know to use Carloop" name="description">
<!-- Initializer -->
<script>
Flatdoc.run({
fetcher: Flatdoc.file('index.md')
});
</script>
</head>
<body role='flatdoc' class='big-h3'>
<div class='header'>
<div class='left'>
<h1>Carloop Docs</h1>
<ul>
<li><a href='https://github.com/carloop/docs'>View on GitHub</a></li>
<li><a href='https://github.com/carloop/docs/issues'>Issues</a></li>
</ul>
</div>
</div>
<div class='content-root'>
<div class='menubar'>
<div class="section">
<a class="big button" href="https://store.carloop.io?utm_source=github&utm_campaign=docs" target="_blank">Buy hardware</a>
</div>
<div class='menu section' role='flatdoc-menu'></div>
</div>
<div role='flatdoc-content' class='content'></div>
</div>
</body>
</html>