-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.bundles.html
33 lines (32 loc) · 1.44 KB
/
index.bundles.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
<!DOCTYPE html>
<html>
<head>
<base href="/" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" />
<title>MLC DEMO of ANGULAR MODAL GALLERY - Angular 5.1.2 BUNDLES AOT</title>
<link rel="icon" href="favicon.ico" />
<!-- JS Libraries -->
<script src="node_modules/mousetrap/mousetrap.min.js" type="text/javascript"></script>
<script src="node_modules/hammerjs/hammer.min.js" type="text/javascript"></script>
<script src="node_modules/core-js/client/shim.min.js" type="text/javascript"></script>
<script src="node_modules/systemjs/dist/system.js" type="text/javascript"></script>
<script src="node_modules/zone.js/dist/zone.min.js" type="text/javascript"></script>
<!-- PrimeNG CSS Stylesheets -->
<link href="node_modules/primeng/resources/themes/pepper-grinder/theme.css" rel="stylesheet" type="text/css">
<link href="node_modules/primeng/resources/primeng.min.css" rel="stylesheet" type="text/css">
<!-- Font-Awesome CSS Stylesheets -->
<link href="node_modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<!-- SystemJS Loader Config -->
<script src="app/systemjs.config.bundles.js" type="text/javascript"></script>
</head>
<body>
<script>
System.import('app/boot.aot').catch(function(err) {
console.error(err);
});
</script>
<!-- App Component -->
<app>Loading ...</app>
</body>
</html>