-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
24 lines (24 loc) · 1.11 KB
/
index.html
File metadata and controls
24 lines (24 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Enyo Bootplate App</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="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<!-- Less.js (uncomment for client-side rendering of less stylesheets; leave commented to use only CSS) -->
<!-- <script src="enyo/tools/minifier/node_modules/less/dist/less-1.3.0e.min.js"></script> -->
<link rel="stylesheet" href="http://nightly.enyojs.com/latest/enyo-nightly/enyo.css">
<script src="http://nightly.enyojs.com/latest/enyo-nightly/enyo.js"></script>
<script src="http://nightly.enyojs.com/latest/lib/onyx/package.js"></script>
<script src="http://nightly.enyojs.com/latest/lib/layout/package.js"></script>
<script src="./package.js"></script>
</head>
<body class="enyo-unselectable">
<script>
new App().renderInto(document.body);
</script>
</body>
</html>