-
Notifications
You must be signed in to change notification settings - Fork 186
/
index.html
37 lines (27 loc) · 1.1 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>
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DrupalGap</title>
<link rel="shortcut icon" href="favicon.ico" />
<!-- jDrupal and DrupalGap -->
<script type="text/javascript" charset="utf-8" src="jdrupal.min.js"></script>
<script type="text/javascript" charset="utf-8" src="drupalgap.min.js"></script>
<link rel="stylesheet" href="css/dg.css" />
<!-- App Settings and DrupalGap Contrib/Custom Modules -->
<script type="text/javascript" charset="utf-8" src="settings.js"></script>
<!--<script src="modules/contrib/example/example.js"></script>-->
<!-- DrupalGap Theme -->
<script src="themes/ava/ava.js"></script>
</head>
<body>
<!-- The DrupalGap Spinner/Loading Icon -->
<div id="dgSpinner" style="display: none;"></div>
<!-- The DrupalGap App Container -->
<div id="dg-app"></div>
<!-- Start DrupalGap -->
<script type="text/javascript">drupalgap.start();</script>
</body>
</html>