forked from sensebox/ardublockly-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (53 loc) · 1.67 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>senseBox Blockly</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/normalize.css">
<link rel="stylesheet" href="assets/index.css">
<style>
body {
text-align: center;
}
</style>
</head>
<body>
<div class="contain-everything">
<div class="inner-contain">
<h1>Herzlich Willkomen bei blockly für senseBox</h1>
<div class="link-container-outer">
<h2>Bitte wähle dein senseBox Model</h2>
<div class="link-container">
<div class="selector">
<a href="https://sensebox.github.io/blockly/">
<img src="assets/img/Genuino.png">
<div>
<h3>senseBox Arduino/Genuino Uno</h3>
</div>
</a>
</div>
<div class="selector">
<a href="/ardublockly/?board=sensebox-mcu">
<div>
<img src="assets/img/mcu.png">
<div>
<h3>senseBox MCU</h3>
</div>
</div>
</a>
</div>
</div>
<div class="help-section">
<p>Oder brauchst du Hilfe?</p>
<div class="link-list">
<a target="_blank" href="https://sensebox.github.io/books-v2/edu/">Gitbook</a>
<a target="_blank" href="https://forum.sensebox.de/">Forum</a>
<a target="_blank" href="https://sensebox.github.io/books-v2/edu/hilfe/hilfe.html">FAQ</a>
</div>
</div>
</div>
</div>
</body>
</html>