-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.html
More file actions
52 lines (44 loc) · 1.35 KB
/
app.html
File metadata and controls
52 lines (44 loc) · 1.35 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<title>AppOS</title>
<link rel="shortcut icon" sizes="32x32" href="./images/app-icon-32.png">
<meta name="theme-color" content="#fff">
<link rel="manifest" href="./manifest.json">
<script>
// setup Polymer options
window.Polymer = {lazyRegister: true, dom: 'shadow'};
// load webcomponents polyfills
(function(window) {
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
// browser has web components
} else {
// polyfill web components
var e = document.createElement('script');
e.src = './bower_components/webcomponentsjs/webcomponents-lite.min.js';
document.head.appendChild(e);
}
})(window);
</script>
<link rel="import" href="../bower_components/polymer/polymer.html">
<link rel="import" href="./src/start-up.html">
<style>
body {
margin: 0;
font-family: 'Roboto', 'Noto', sans-serif;
line-height: 1.5;
min-width: 800px;
min-height: 600px;
background-color: #eee;
overflow: hidden;
}
</style>
</head>
<body>
<start-up></start-up>
</body>
</html>