| 1 |
<!DOCTYPE html> |
= |
1 |
<!DOCTYPE html> |
| 2 |
|
|
2 |
|
| 3 |
<html lang="en" class="default-style"> |
|
3 |
<html lang="en" class="default-style"> |
| 4 |
<head> |
|
4 |
<head> |
| 5 |
<base href="/"> |
|
5 |
<base href="/"> |
| 6 |
<title>Angular Starter</title> |
|
6 |
<title>Angular Starter</title> |
| 7 |
|
|
7 |
|
| 8 |
<meta charset="utf-8"> |
|
8 |
<meta charset="utf-8"> |
| 9 |
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1"> |
|
9 |
<meta http-equiv="x-ua-compatible" content="IE=edge,chrome=1"> |
| 10 |
<meta name="description" content=""> |
|
10 |
<meta name="description" content=""> |
| 11 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> |
|
11 |
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"> |
| 12 |
<link rel="icon" type="image/x-icon" href="favicon.ico"> |
|
12 |
<link rel="icon" type="image/x-icon" href="favicon.ico"> |
| 13 |
|
|
13 |
|
| 14 |
|
|
14 |
|
| 15 |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet"> |
|
15 |
<link href="https://fonts.googleapis.com/css?family=Roboto:300,300i,400,400i,500,500i,700,700i,900" rel="stylesheet"> |
| 16 |
|
|
16 |
|
| 17 |
|
|
17 |
|
| 18 |
|
|
18 |
|
| 19 |
<link rel="stylesheet" href="assets/vendor/fonts/ionicons.css"> |
|
19 |
<link rel="stylesheet" href="assets/vendor/fonts/ionicons.css"> |
| 20 |
|
|
20 |
|
| 21 |
|
|
21 |
|
| 22 |
|
|
22 |
|
| 23 |
|
|
23 |
|
| 24 |
|
|
24 |
|
| 25 |
<script src="assets/vendor/js/layout-helpers.js"></script> |
|
25 |
<script src="assets/vendor/js/layout-helpers.js"></script> |
| 26 |
|
|
26 |
|
| 27 |
</head> |
|
27 |
</head> |
| 28 |
<body> |
|
28 |
<body> |
| 29 |
|
|
29 |
|
| 30 |
|
|
30 |
|
| 31 |
<app-root></app-root> |
|
31 |
<app-root></app-root> |
| 32 |
|
|
32 |
|
| 33 |
|
|
33 |
|
| 34 |
<!-- IE11 fix --> |
+- |
|
|
| 35 |
<script> |
|
|
|
| 36 |
if (!!window.MSInputMethodContext && !!document.documentMode || document.documentMode <= 11) { |
|
|
|
| 37 |
window.MouseEvent.prototype = Event.prototype; |
|
|
|
| 38 |
|
|
|
|
| 39 |
window.MouseEvent = function (eventType, params) { |
|
|
|
| 40 |
params = params || { bubbles: false, cancelable: false }; |
|
|
|
| 41 |
var mouseEvent = document.createEvent('MouseEvent'); |
|
|
|
| 42 |
mouseEvent.initMouseEvent(eventType, params.bubbles, params.cancelable, window, 0, 0, 0, 0, 0, false, false, false, false, 0, null); |
|
|
|
| 43 |
|
|
|
|
| 44 |
return mouseEvent; |
|
|
|
| 45 |
} |
|
|
|
| 46 |
} |
|
|
|
| 47 |
</script> |
|
|
|
| 48 |
</body> |
= |
34 |
</body> |
| 49 |
</html> |
|
35 |
</html> |