forked from FuelInteractive/fuel-ui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (31 loc) · 1.39 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>
<head>
<title>Fuel-UI Demos</title>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="node_modules/prismjs/themes/prism-coy.css" />
<link rel="stylesheet" href="node_modules/font-awesome/css/font-awesome.min.css" />
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css" />
<link rel="stylesheet" href="dist/styles/fuel-ui.css" />
<link rel="stylesheet" href="dist/demo.css" />
<script src="node_modules/prismjs/prism.js"></script>
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/systemjs/dist/system-polyfills.js"></script>
<script src="https://cdn.polyfill.io/v2/polyfill.js?features=Intl.~locale.en"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/systemjs/dist/system.js"></script>
<script src="node_modules/hammerjs/hammer.min.js"></script>
<script src="config.js"></script>
<script>
System.import("dist/demo").catch(console.log.bind(console));
</script>
</head>
<body>
<!-- The app component created in app.ts -->
<fuel-ui>Loading...</fuel-ui>
<test></test>
</body>
</html>