-
Notifications
You must be signed in to change notification settings - Fork 6
/
getstarted.html
executable file
·142 lines (118 loc) · 5.42 KB
/
getstarted.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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Calaos, Open Source Home Automation System">
<meta name="author" content="Calaos Team">
<link rel="shortcut icon" href="ico/favicon.ico">
<link rel=”apple-touch-icon-precomposed” sizes=”57×57" href=”ico/apple-touch-icon-57×57-precomposed.png”>
<link rel=”apple-touch-icon-precomposed” sizes=”72×72" href=”ico/apple-touch-icon-72×72-precomposed.png”>
<link rel=”apple-touch-icon-precomposed” sizes=”114×114" href=”ico/apple-touch-icon-114×114-precomposed.png”>
<link rel=”apple-touch-icon-precomposed” sizes=”144×144" href=”ico/apple-touch-icon-144×144-precomposed.png”>
<title>Calaos, Open Source Home Automation System</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/bootstrap-theme.min.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar-wrapper">
<div class="container">
<div class="navbar navbar-inverse navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">Calaos</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li><a href="index.html">Back to main page</a></li>
<li class="active"><a href="#">Get started</a></li>
<li><a href="https://www.calaos.fr/forum/">Forum</a></li>
<li><a href="http://www.calaos.fr/wiki/">Wiki</a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<br /><br /><br />
<br />
<div class="container">
<div class="row">
<div class="col-sm-2">
<nav class="nav-sidebar">
<ul class="nav">
<li class="active"><a href="getstarted.html">Get started</a></li>
<li ><a href="hardware.html">Hardware</a></li>
<li ><a href="software.html">Software</a></li>
<li ><a href="configuration.html">Configure</a></li>
<li ><a href="faq.html">FAQ</a></li>
<li ><a href="license.html">License</a></li>
</ul>
</nav>
</div>
<div class="col-sm-10" style="background-color:#FFF; margin-left:-15px;">
<div class="row mt centered">
<div class="col-lg-10 col-lg-offset-1">
<h1>Welcome to the Calaos Getting Started guide</h1>
<h3>Click on the icons below to learn how to quickly build your own Calaos system.</h3>
</div>
</div><!-- /row -->
<div class="row mt centered">
<div class="col-lg-4">
<a href="hardware.html"><img src="img/jockey.png" alt=""></a>
<a href="hardware.html"><h4>Get the hardware</h4></a>
<p>Calaos-OS runs on Raspbery Pi, Mele, cubieboard as well as x86.</p>
</div><!--/col-lg-4 -->
<div class="col-lg-4">
<a href="software.html"><img src="img/folder-download.png" alt=""></a>
<a href="software.html"><h4>Download the software</h4></a>
<p>We've figured out the hard stuff. Just download the disk image, burn the SD and plug in your board.</p>
</div><!--/col-lg-4 -->
<div class="col-lg-4">
<a href="configure.html"><img src="img/system-run.png" alt=""></a>
<a href="configure.html"><h4>Configure & Run</h4></a>
<p>Learn how to configure your Calaos system and let it control your home.</p>
</div><!--/col-lg-4 -->
</div><!-- /row -->
</div>
</div>
</div>
<!-- FOOTER -->
<div class="container">
<footer>
<p class="pull-right"><a href="#">Back to top</a></p>
<p>Bas de page · <a href="http://www.gnu.org/licenses/gpl.html">GNU Licence</a></p>
</footer>
</div><!-- /container -->
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<!-- Piwik -->
<script type="text/javascript">
var _paq = _paq || [];
_paq.push(['trackPageView']);
_paq.push(['enableLinkTracking']);
(function() {
var u=(("https:" == document.location.protocol) ? "https" : "http") + "://calaos.fr/stats//";
_paq.push(['setTrackerUrl', u+'piwik.php']);
_paq.push(['setSiteId', 1]);
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>
<noscript><p><img src="http://calaos.fr/stats/piwik.php?idsite=1" style="border:0" alt="" /></p></noscript>
<!-- End Piwik Code -->
</body>
</html>