-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (29 loc) · 1.17 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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>Convoo</title>
<meta name="description" content="Learn something new from every individual">
<meta property="og:title" content="Convoo">
<meta property="og:image" content="https://convoo.me/images/logo.png">
<link rel="icon" type="image/png" href="images/IconLight.png">
<link rel="manifest" href="/manifest.json">
<link rel="import" href="/src/convoo-holding-app/convoo-holding-app.html" async>
</head>
<body>
<convoo-holding-app></convoo-holding-app>
<script>
Polymer = {lazyRegister: true, dom: 'shadow'};
(function() {
if ('registerElement' in document
&& 'import' in document.createElement('link')
&& 'content' in document.createElement('template')) {
} else {
var script = document.createElement('script');
script.src = '/bower_components/webcomponentsjs/webcomponents-lite.min.js';
document.body.appendChild(script);
}
})();
</script>
</body>
</html>