-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (33 loc) · 983 Bytes
/
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
49
50
51
52
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, minimum-scale=1.0, initial-scale=1.0, user-scalable=yes">
<script src="bower_components/webcomponentsjs/webcomponents.js"></script>
<link rel="import" href="bower_components/polymer/polymer.html">
<link rel="import" href="pages/leboucher-index.html">
<style>
body {
background-color: #dddddd;
margin: 0px;
padding: 0;
}
</style>
<title>Fencing Drill Generator</title>
</head>
<body>
<dom-module id="leboucher-app">
<template>
<leboucher-index></leboucher-index>
</template>
<script>
window.addEventListener('WebComponentsReady', function(e) {
Polymer({
is: 'leboucher-app',
});
});
</script>
</dom-module>
<leboucher-app></leboucher-app>
</body>
</html>