-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
41 lines (40 loc) · 1.98 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
41
<!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>
<script src="build/bundle.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">
<!-- css -->
<link href="modules/font-awesome/css/font-awesome.min.css" rel="stylesheet" >
<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>