-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
34 lines (31 loc) · 1.11 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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1, initial-scale=1, user-scalable=yes">
<title>framapp-polymer</title>
<meta name="description" content="framapp-polymer description">
<!-- See https://goo.gl/OOhYW5 -->
<link rel="manifest" href="/manifest.json" async>
<script>Polymer = {dom:'shadow' }</script>
<script src="/bower_components/webcomponentsjs/webcomponents-lite.js" async></script>
<script src="/node_modules/redux/dist/redux.min.js"></script>
<script src="/node_modules/redux-thunk/dist/redux-thunk.min.js"></script>
<link rel="import" href="/src/framapp-polymer-app/framapp-polymer-app.html" async>
<style>
body {
margin: 0;
}
</style>
<script>
if ('serviceWorker' in navigator) {
window.addEventListener('load', function() {
navigator.serviceWorker.register('/service-worker.js');
});
}
</script>
</head>
<body>
<framapp-polymer-app></framapp-polymer-app>
</body>
</html>