-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
186 lines (156 loc) · 6.62 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
<!DOCTYPE html>
<html>
<head>
<title>My Page</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Include the jQuery library -->
<link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css"/>
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/jquery.mobile-1.3.1.min.js"></script>
<!--<script src="js/jquery.mmenu.min.all.js"></script>-->
<!--<link rel="stylesheet" href="css/jquery.mmenu.all.css">-->
<link rel="stylesheet" href="css/custom.css">
<script src="js/utilities.js"></script>
<!-- Include the jQuery Mobile library -->
<!--<script src="http://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script>-->
<script src="js/handlebars.runtime.min.js"></script>
<script src="js/helpers.js"></script>
<script src="js/templates.js"></script>
<script src="js/scripts.js"></script>
<script src="js/setup.js"></script>
</head>
<body>
<div>
<div data-role="page" id="home" data-theme="b">
<div data-role="panel" id="navpanel" data-theme="a"
data-display="overlay" data-position="right">
<div data-role="controlgroup" data-corners="false" >
<a href="#fullstats" data-role="button">Project100Millions Stats</a>
<a href="#livedata" data-role="button" >Live Visitors</a>
<a href="#inquirers" data-role="button">Recent Inquirers</a>
<a href="#responses" data-role="button">Recent Responses</a>
<a href="#testimonies" data-role="button">Testimonies</a>
<a href="#prayerneeds" data-role="button">Prayer Needs</a>
<a href="#news" data-role="button">News From Network211</a>
<a href="#options" data-role="button">Options</a>
</div>
</div>
<div data-role="header" data-theme="b" class="ui-header">
<a id="bars-button" data-icon="bars" class="ui-btn-right" style="margin-top:3px;" href="#navpanel">Menu</a>
<h1>Network211</h1>
</div>
<article data-role="content" class="ui-content" id="homecontent">
<img class="frontpagelogo" src="img/N211LogoNew.png" />
<p class="frontpage">Using 21<sup>st</sup> Century Technology<br>To Present the <span style="color:red;font-weight:bold">1<sup>st</sup></span> Century Gospel</p>
</article>
</div>
<!--Live Data-->
<div data-role="page" id="livedata">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Live Data</h1>
</div>
<article data-role="content" id="livedataList">
</article>
</div>
<!--NEWS-->
<div data-role="page" id="news" onload="showNews();">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>News From Network211</h1>
</div>
<!-- /header -->
<article data-role="content" id="newsList">
<h2>Sorry, no news articles available...</h2>
</article>
</div>
<!--Fullstats-->
<div data-role="page" id="fullstats" onload="showFullStats();">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Project100Million Statistics</h1>
</div>
<!-- /header -->
<article data-role="content" id="fullstatsList">
<div id="fullstatsDiv"></div>
<form>
<div class="ui-field-contain"><label for="select-stats-period">Select Period to View</label>
<select name="select-stats-period" id="select-stats-period">
<option value="all" selected="selected">All Data</option>
<option value="2015-01-01/2015-12-31">2015</option>
<option value="2014-01-01/2014-12-31">2014</option>
<option value="2013-01-01/2013-12-31">2013</option>
<option value="2012-01-01/2012-12-31">2012</option>
<option value="2011-01-01/2011-12-31">2011</option>
<option value="2010-01-01/2010-12-31">2010</option>
<option value="2009-01-01/2009-12-31">2009</option>
</select>
</div>
</form>
</article>
</div>
<!--Inquirers -->
<div data-role="page" id="inquirers" onload="showInquirers();">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Recent Inquirers</h1>
</div>
<!-- /header -->
<article data-role="content" id="inquirersList">
</article>
</div>
<!--Responses-->
<div data-role="page" id="responses" onload="showResponses();">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Recent Responses</h1>
</div>
<!-- /header -->
<article data-role="content" id="responsesList">
</article>
</div>
<!--PrayerNeeds-->
<div data-role="page" id="prayerneeds" onload="showPrayerNeeds();">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Prayer Needs from Inquirers</h1>
</div>
<article data-role="content" id="prayerneedsList">
</article>
</div>
<!--Testimonies-->
<div data-role="page" id="testimonies">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Testimonies</h1>
</div>
<!-- /header -->
<div data-role="content" id="testimoniesList">
</div>
<!-- /content -->
</div>
<!-- /page -->
<!--Options-->
<div data-role="page" id="options">
<div data-role="header" data-theme="b" class="ui-header">
<a data-role="button" href="#home">Home</a>
<h1>Options</h1>
</div>
<!-- /header -->
<div data-role="content" id="optionsList">
</div>
<!-- /content -->
</div>
<!--Debug-->
<div data-role="page" id="debug" onload="showLocalStorage();">
<div data-role="header" data-theme="b" class="ui-header">
<button onclick="clearCache();">Clear Cache</button>
<h1>Debug Page</h1>
</div>
<!-- /header -->
<article data-role="content" id="debugcontent">
</article>
</div>
</div>
</body>
</html>