-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (32 loc) · 1.11 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
<!doctype html>
<html lang="de">
<head>
<meta charset="utf-8">
<title>Videogames App</title>
<meta name="description" content="Videogames App">
<meta name="author" content="André Wegmüller">
<!-- FIXME das hier dokumentieren, wichtig für layout auf mobilen geräten -->
<meta name="apple-mobile-web-app-capable" content="yes"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
<link rel="stylesheet" href="lib/eclipse-scout.css">
<link rel="stylesheet" href="build/css/videogames.css">
</head>
<body>
<div class="scout"></div>
<script src="lib/jquery-2.2.4.js"></script>
<script src="lib/jquery-ui-1.11.2.js"></script>
<script src="lib/eclipse-scout.js"></script>
<script src="build/js/videogames.js"></script>
<script>
new scout.App().init({
bootstrap: {
fonts: ['scoutIcons'],
modelsUrl: 'json/videogames-models.json',
textsUrl: 'json/texts.json',
codesUrl: 'json/codes.json',
localesUrl: 'json/locales.json'
}
});
</script>
</body>
</html>