-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathblockly.html
60 lines (56 loc) · 2.6 KB
/
blockly.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
<!DOCTYPE html>
<html>
<head>
<link href="http://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="lib/materialize-css/dist/css/materialize.min.css" media="screen,projection"/>
<link type="text/css" rel="stylesheet" href="lib/materialize-css/templates/starter-template/css/style.css"/>
<link type="text/css" rel="stylesheet" href="css/stylesheet.css"/>
<!--<link type="text/bss" rel="behaviors" href="bss/stylesheet.bss"/>-->
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
</head>
<body>
<nav class="transparent" role="navigation">
<div class="nav-wrapper container">
<a id="logo-container" href="#" class="brand-logo">
<img src="images/c-quince.png" height="55"/>
<img src="images/logo_text.png" alt="C-Quince - Kids in Code"/>
</a>
<ul class="right hide-on-med-and-down">
<li><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
</ul>
<ul id="nav-mobile" class="side-nav">
<li><a href="index.html">About</a></li>
<li><a href="demo.html">Demo</a></li>
<li><a href="blockly.html">Blockly</a></li>
<li><a href="https://github.com/MallowWorld/c-quince">Fork me on GitHub!</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons orange-text text-darken-1">menu</i></a>
</div>
</nav>
<a id="forkme-banner" class="hide-on-med-and-down" href="https://github.com/MallowWorld/c-quince"></a>
<section class="section section-1 no-pad-bot">
<div class="container">
<div class="row center">
<div id="blocklyDiv" style="height: 480px; width: 600px;"></div>
</div>
</div>
</section>
<footer class="page-footer transparent">
<div class="footer-copyright light-blue darken-3 white-text">
<p class="container">Maintained by <a class="orange-text text-darken-3" href="http://mallowworld.wordpress.com/">MallowWorld</a></p>
</div>
<br />
<br />
</footer>
<xml id="toolbox" style="display: none">
<block type="controls_repeat_times"></block>
<block type="controls_move"></block>
<block type="controls_spin"></block>
</xml>
<script type="text/javascript" src="bundle.js"></script>
<script type="text/javascript" src="lib/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="lib/materialize-css/dist/js/materialize.min.js"></script>
<script type="text/javascript" src="lib/materialize-css/templates/starter-template/js/init.js"></script>
</body>
</html>