forked from primefaces/primeng
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (43 loc) · 2.14 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
43
44
45
46
47
48
49
50
<html>
<head>
<script>document.write('<base href="' + document.location + '" />');</script>
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, maximum-scale=1.0"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>PrimeNG</title>
<link rel="stylesheet" type="text/css" href="showcase/resources/primeui/themes/delta/theme.css" />
<link rel="stylesheet" type="text/css" href="showcase/resources/icons/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="showcase/resources/css/jquery-ui.css" />
<link rel="stylesheet" type="text/css" href="showcase/resources/primeui/primeui.css" />
<link rel="stylesheet" type="text/css" href="showcase/resources/css/site.css" />
<script src="node_modules/angular2/bundles/angular2-polyfills.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/rxjs/bundles/Rx.js"></script>
<script src="node_modules/angular2/bundles/angular2.dev.js"></script>
<script src="node_modules/angular2/bundles/router.dev.js"></script>
<script src="showcase/resources/js/jquery.js"></script>
<script src="showcase/resources/js/jquery-ui.js"></script>
<script src="showcase/resources/primeui/primeui.js"></script>
<script src="showcase/resources/js/site.js"></script>
<script src="showcase/resources/js/charts.min.js"></script>
<script>
System.config({
packages: {
"showcase": {
format: 'register',
defaultExtension: 'js'
},
"components": {
format: 'register',
defaultExtension: 'js'
}
}
});
System.import('showcase/boot').then(null, console.error.bind(console));
</script>
</head>
<body>
<primeng-showcase>
<div style="margin:0 auto;width:50%;margin-top:200px"><img src="showcase/resources/images/primeng.svg" /></div>
</primeng-showcase>
</body>
</html>