-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
35 lines (31 loc) · 1.33 KB
/
Copy pathindex.html
File metadata and controls
35 lines (31 loc) · 1.33 KB
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Angular2Cli Webcomponents Demo</title>
<link rel="icon" type="image/x-icon" href="favicon.ico">
<base href="/">
<!-- patternfly css -->
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/patternfly/3.18.1/css/patternfly.min.css"/>
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/patternfly/3.18.1/css/patternfly-additions.min.css"/>
<!-- load the webcomponent polyfill-->
<script src="//cdnjs.cloudflare.com/ajax/libs/webcomponentsjs/0.7.23/webcomponents-lite.js"/>
<!-- Custom Element shim for Safari -->
<script>
if (typeof HTMLElement !== 'function'){
var _HTMLElement = function(){};
_HTMLElement.prototype = HTMLElement.prototype;
HTMLElement = _HTMLElement;
}
</script>
<!-- vendor scripts from cdn -->
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.1.1/jquery.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/patternfly/3.18.1/js/patternfly.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery.matchHeight/0.7.0/jquery.matchHeight-min.js"></script>
</head>
<body>
<app-root>Loading...</app-root>
</body>
</html>