Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/html/index.html
blob: b23d25d650993510afdc2a6298d63e32ebbaa47a (plain)
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
<!doctype html>
<html>
<head>
	<title>Abecedarium</title>
	<link href="enyo/enyo.css" rel="stylesheet" type="text/css" />	
	<link href="enyo/lib/layout/layout.css" rel="stylesheet" type="text/css" />
	<link href="enyo/lib/onyx/onyx.css" rel="stylesheet" type="text/css" />	
	<script src="enyo/enyo.js" type="text/javascript"></script>
	<script src="enyo/lib/layout/layout.js" type="text/javascript"></script>
	<script src="enyo/lib/onyx/onyx.js" type="text/javascript"></script>
	<link href="styles.css" rel="stylesheet" type="text/css" />	
</head>
<body class="board">
<div id="header" class="config"></div>
<div id="body"></div>
<script src="depends.js" type="text/javascript"></script>	
<script type="text/javascript">

// Ready to receive Python message
Abcd.sugar.sendMessage("ready");

// Touchpad specific
try { if (PalmSystem) PalmSystem.stageReady(); } catch (e) {};

// Create sound component
Abcd.sound = new Abcd.Audio();
Abcd.sound.renderInto(document.getElementById("header"));

// Create and display first screen
new Abcd.App().renderInto(document.getElementById("body"));
</script>
</body>
</html>