-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (39 loc) · 1.92 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Subsistence Farming</title>
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height"/>
<link rel="prefetch" type="application/l10n" href="locale.ini" />
<link rel="stylesheet" media="not screen and (device-width: 1200px) and (device-height: 900px)"
href="lib/sugar-web/graphics/css/sugar-96dpi.css">
<link rel="stylesheet" media="screen and (device-width: 1200px) and (device-height: 900px)"
href="lib/sugar-web/graphics/css/sugar-200dpi.css">
<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="data/database.js" type="text/javascript"></script>
<script src="data/photos.js" type="text/javascript"></script>
<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>
<script data-main="js/loader" src="lib/require.js"></script>
<script src="depends.js" type="text/javascript"></script>
<link href="styles.css" rel="stylesheet" type="text/css"/>
</head>
<body>
<div id="main-toolbar" class="toolbar">
<button class="toolbutton" id="activity-button" title="My Activity"></button>
<hr/>
<button class="toolbutton" id="home" title="Home"></button>
<button class="toolbutton" id="forum" title="Forum"></button>
<!-- Add more buttons here -->
<!-- Buttons with class="pull-right" will be right aligned -->
<button class="toolbutton pull-right" id="stop-button" title="Stop"></button>
</div>
<!-- The content of your activity goes inside the canvas -->
<div id="canvas" class="board">
<div id="body"></div>
</div>
</body>
</html>