aboutsummaryrefslogtreecommitdiffstats
path: root/api/index.html
blob: a5697e65c57e44a3db8b6011baf27768bfed0126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!doctype html>
<html>
	<head>
		<title>Enyo Bootplate App</title>
		<link rel="shortcut icon" href="assets/favicon.ico">
		<!-- -->
		<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">
		<!-- css -->
		<link href="build/enyo.css" rel="stylesheet">
		<link href="build/app.css" rel="stylesheet">
		<!-- js -->
		<script src="build/enyo.js"></script>
		<script src="build/app.js" onerror="alert('No application build found, redirecting to debug.html.'), location='debug.html';"></script>
	</head>
	<body class="enyo-unselectable">
		<script>
			new App().write();
		</script>
	</body>
</html>