-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.6 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
<!DOCTYPE html>
<html lang="en" ng-app="starwars">
<head>
<meta charset="utf-8">
<meta http-equiv="Pragma" content="no-cache">
<meta http-equiv="X-UA-Compatible" content="IE=10; IE=9; IE=8; IE=7; IE=EDGE" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="mobile-web-app-capable" content="yes">
<title>STAR WARS</title>
<link rel="shortcut icon" href="images/favicon.ico" type="image/x-icon">
<script type="text/javascript">
(function() {
var styles = ['css/vendor.css', 'css/styles.css'];
// Loop through each styles name and append new version number for cache busting
styles.map(function(style) {
document.write("<link rel='stylesheet' href='" + style + "?version=2.0_" + (new Date().getTime()) + "'>");
});
})();
</script>
</head>
<body ng-cloak>
<div class="app-wrapper">
<div class="night-sky">
<div class="stars"></div>
<div class="twinkling"></div>
<div class="clouds"></div>
</div>
<article class="app-body full-height" ui-view></article>
</div>
<script type="text/javascript">
(function() {
var scripts = ['js/vendor.js', 'api.config.js', 'app.config.js', 'js/app.js'];
// Loop through each script name and append new version number for cache busting
scripts.map(function(script) {
document.write("<script src='" + script + "?version=2.0_" + (new Date().getTime()) + "'><\/script>");
});
})();
</script>
</body>
</html>