-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width">
<link rel="stylesheet" href="css/brick.min.css">
<link rel="stylesheet" href="css/blocklib.css">
<link rel="stylesheet" href="css/app.css">
<!-- <link rel="import" href="js/wb-switch.html" /> -->
<title>Block Library Test</title>
</head>
<body>
<x-appbar id="bar">
<header>Block Library Test</header>
<button id="view-prev">Previous View</button>
<button id="view-next">Next View</button>
</x-appbar>
<x-deck id="views" selected-index="0">
<x-card>
<h1>View 1</h1>
<p>Hello World</p>
<p>
<wb-eye></wb-eye>
<wb-eye></wb-eye>
</p>
<wb-switch checked></wb-switch>
</x-card>
<x-card>
<h1>Pick a date</h1>
<p><x-calendar> are a polyfill for <input type="date"></p>
<x-calendar></x-calendar>
<p>Just here to show another tag in action</p>
</x-card>
</x-deck>
<!-- // <script src="js/html-imports.min.js"></script> -->
<script src="js/brick.js"></script>
<script src="js/dom.js"></script>
<script src="js/wb-eye.js"></script>
<script src="js/wb-switch.js"></script>
<script src="js/app.js"></script>
</body>
</html>