forked from signalpoint/DrupalGap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (40 loc) · 1.95 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
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>DrupalGap</title>
<meta charset="utf-8" />
<meta name="format-detection" content="telephone=no" />
<!-- WARNING: for iOS 7, remove the width=device-width and height=device-height attributes. See https://issues.apache.org/jira/browse/CB-4323 -->
<meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width, height=device-height" />
<link rel="shortcut icon" href="favicon.ico" />
<!-- jQuery Mobile -->
<link rel="stylesheet" href="jquery.mobile-1.4.5.min.css" />
<script src="jquery-1.9.1.min.js"></script>
<script src="jquery.mobile-1.4.5.min.js"></script>
<script src="jquery-ui-1.12.1.custom/jquery-ui.js"></script>
<script src="jquery-ui-touch-punch/jquery.ui.touch-punch.js"></script>
<!-- jDrupal -->
<script type="text/javascript" charset="utf-8" src="jDrupal/jdrupal.js"></script>
<!-- DrupalGap -->
<script type="text/javascript" charset="utf-8" src="bin/drupalgap.js"></script>
<script type="text/javascript" charset="utf-8" src="app/settings.js"></script>
<link rel="stylesheet" href="css/drupalgap.css" />
</head>
<body>
<!-- Load PhoneGap (Cordova) -->
<script type="text/javascript" src="cordova.js"></script>
<!-- Mobile Application Splash Screen -->
<div id="_drupalgap_splash" data-role="page">
<div data-role="header" data-theme="b"><h2>DrupalGap</h2></div>
<div class="ui-content" data-role="content">
<div id="_drupalgap_splash_content">
<img src="images/drupalgap.jpg" alt="DrupalGap" style="position: absolute; top: 50%; left: 50%; margin-left: -64px; margin-top: -64px;" />
</div>
</div>
</div>
<!-- Load DrupalGap -->
<script type="text/javascript">
drupalgap_onload();
</script>
</body>
</html>