forked from webos-internals/preware
-
Notifications
You must be signed in to change notification settings - Fork 14
/
index.html
27 lines (27 loc) · 892 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Preware 2</title>
<link rel="shortcut icon" href="assets/favicon.ico"/>
<!-- -->
<meta http-equiv="Content-Type" content="text/html; charset=utf8"/>
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="height=device-height, user-scalable=no"/>
<!-- css -->
<link href="build/enyo.css" rel="stylesheet"/>
<link href="build/app.css" rel="stylesheet"/>
<!-- js -->
<!--script src="/usr/palm/frameworks/cordova/cordova.js"></script-->
<script src="build/enyo.js"></script>
<script src="build/app.js"></script>
</head>
<body class="enyo-unselectable">
<script>
if (window.PalmSystem) {
PalmSystem.stageReady();
}
new App().renderInto(document.body);
</script>
</body>
</html>