forked from michalsukupcak/G-Suite-New-Tab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (39 loc) · 1.33 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
47
48
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<meta name="theme-color" content="#EEE">
<title>Troly ― Our Team, Starts Here!</title>
<!-- Favicon -->
<link rel="shortcut icon" sizes="32x32" href="/images/troly-icon-16.png">
<!-- Manifest -->
<link rel="manifest" href="/manifest.json">
<!-- Polymer init -->
<script>
window.Polymer = {lazyRegister: true, dom: 'shadow'};
(function() {
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
} else {
var e = document.createElement('script');
e.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js';
document.head.appendChild(e);
}
})();
</script>
<!-- Import main app element -->
<link rel="import" href="./src/x-app.html">
<!-- Main styles -->
<style>
body { background-color: #EEE; font-family: 'Roboto', 'Noto', sans-serif; line-height: 1.5; margin: 0 1em; }
::-webkit-scrollbar { display: none; }
</style>
</head>
<body>
<!-- App -->
<x-app></x-app>
</body>
</html>