-
Notifications
You must be signed in to change notification settings - Fork 1
/
index-dev.html
56 lines (55 loc) · 2.98 KB
/
index-dev.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
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Drassil Launcher</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Montserrat|Roboto" rel="stylesheet">
<!-- [START] Workaround for browsers scripts under electron ( work in browser too ) -->
<script>if (typeof module === 'object') {window.module = module; module = undefined;}</script>
<!-- initial -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="src/defines.js"></script>
<!-- webcomponent polyfill activated! -->
<script src="modules/bower_components/webcomponentsjs/webcomponents-lite.js"></script>
<!-- angular framework -->
<script src="modules/hw-core/js-modules/jquery/index.js"></script>
<script src="modules/angularjs/1_5/angular.js"></script>
<script src="modules/angularjs/1_5/angular-route.js"></script>
<script src="modules/bower_components/angular-loading-bar/build/loading-bar.min.js"></script>
<script src="modules/bower_components/angular-video-bg/angular-video-bg.min.js"></script>
<!-- Drassil App -->
<script src="src/hwcConf.js"></script>
<script src="modules/hw-core/js-modules/requirejs/requirejs/index.js"></script>
<script src="modules/hw-core/js-kernel/index.js"></script>
<script src="modules/angular-xt/src/index.js"></script>
<script src='src/functions.js'></script>
<script src="src/app.js"></script>
<!-- load our web components -->
<link rel="import" href="src/components/header-app-btn/template.html">
<link rel="import" href="src/components/footer-drassil/template.html">
<link rel="import" href="src/components/header-drassil/template.html">
<link rel="import" href="src/components/header-azs/template.html">
<link rel="import" href="src/components/header-newage/template.html">
<link rel="import" href="src/components/wow-client-buttons/template.html">
<link rel="import" href="src/components/drassil-games/template.html">
<!-- Global 3d-party modules -->
<link href="modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" >
<script src="modules/bootstrap/js/bootstrap.min.js"></script>
<link href="modules/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="src/css/style.css" rel="stylesheet" type="text/css">
<!-- [END] Workaround for browsers scripts under electron ( work in browser too ) -->
<script>if (window.module) module = window.module;</script>
<script>
window.Drassil.realm="drassil";
</script>
</head>
<body>
<div ng-app="DrassilApp">
<div ng-view><!-- dynamic content --></div>
<footer>
<footer-drassil></footer-drassil>
</footer>
</div>
</body>
</html>