-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
347 lines (237 loc) · 12.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
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
<!DOCTYPE html>
<html lang="en" id="top">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable = no">
<meta name="author" content="Matt Nearents">
<link rel="shortcut icon" href="favicon.ico">
<title>Scripture Games | Multiplayer scripture mastery meyhem</title>
<!-- -->
<meta name="keywords" content="lds, scripture games, book of mormon, latter-day saints, mormons, app, mobile"/>
<meta name="description" content="Challenge friends in three word-based scripture games including scripture golf, hangman, and word scramble." />
<!-- my css file -->
<link href="css/style-min.css" rel="stylesheet">
<!-- Picture Fill -->
<script>
// Picture element HTML5 shiv
document.createElement( "picture" );
</script>
<script src="picturefill.js" async></script>
<!-- font awesome -->
<link href="//netdna.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css" rel="stylesheet">
<!-- google fonts -->
<link href="https://fonts.googleapis.com/css?family=Bubblegum+Sans" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<!-- JQUERY -->
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<!-- favicon stuff -->
<link rel="apple-touch-icon" sizes="57x57" href="favicon/apple-icon-57x57.png">
<link rel="apple-touch-icon" sizes="60x60" href="favicon/apple-icon-60x60.png">
<link rel="apple-touch-icon" sizes="72x72" href="favicon/apple-icon-72x72.png">
<link rel="apple-touch-icon" sizes="76x76" href="favicon/apple-icon-76x76.png">
<link rel="apple-touch-icon" sizes="114x114" href="favicon/apple-icon-114x114.png">
<link rel="apple-touch-icon" sizes="120x120" href="favicon/apple-icon-120x120.png">
<link rel="apple-touch-icon" sizes="144x144" href="favicon/apple-icon-144x144.png">
<link rel="apple-touch-icon" sizes="152x152" href="favicon/apple-icon-152x152.png">
<link rel="apple-touch-icon" sizes="180x180" href="favicon/apple-icon-180x180.png">
<link rel="icon" type="image/png" sizes="192x192" href="favicon/android-icon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="96x96" href="favicon/favicon-96x96.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon/favicon-16x16.png">
<link rel="manifest" href="favicon/manifest.json">
<meta name="msapplication-TileColor" content="#ffffff">
<meta name="msapplication-TileImage" content="ms-icon-144x144.png">
<meta name="theme-color" content="#ffffff">
<script>
/* form submission 550693*/
$("#iOSForm").submit(function( e ) {
e.preventDefault();
var form = $(this);
$.ajax({
type: form.attr('method'),
url: form.attr('action'),
data: form.serialize(),
success: function(response) {
alert("success");
}
});
return false;
});
</script>
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/en_US/sdk.js#xfbml=1&version=v2.3&appId=852927288122622";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<div>
<header id="header" class="hidden-xs fx">
</header>
</div>
<div class="push"></div>
<div id="fixed-bg">
</div>
<div id="about" class="section">
<div id="dunesbg">
<!-- temporary h1, delete when we have a video -->
<div class="cloud x1"></div>
<div class="cloud x2"></div>
<div class="cloud x3"></div>
<div class="cloud x4"></div>
<div class="cloud x5"></div>
<div class="row">
<div id="topLeft" class="col-md-5">
<div id="topLeftContent">
<div>
<object data="images/moses-icon.svg" type="image/svg+xml"></object>
</div>
<!-- <img src="images/moses-icon.svg" alt="Scripture Games app icon"><br>-->
<h1>LDS Scripture Games</h1>
<p>Three word-based scripture games:</p>
<ul>
<li>Scripture Golf</li>
<li>Hangman</li>
<li>Word Scramble</li>
</ul>
<div id="button-div">
<div class="button-wrapper">
<a class="asvg" href="https://play.google.com/store/apps/details?id=com.tengentllc.scripturegolf&referrer=Scripturegames.com"><object data="images/google-play-badge.svg" type="image/svg+xml" alt="Get it on Google Play button"></object></a>
</div>
<div class="button-wrapper">
<a class="asvg" href="#signup"><object data="images/Apple_App_Store_Badge.svg" type="image/svg+xml" alt="Get it on the iOS store button"></object></a>
</div>
</div>
</div>
</div>
<div id="topRight" class="col-md-7">
<picture>
<source media="(min-width: 992px)" srcset="images/tablet-phone-l.png">
<source media="(min-width: 600px)" srcset="images/tablet-phone-s.png">
<source media="(min-width: 320px)" srcset="images/phone-l.png">
<img src="images/phone-s.png" alt="Screenshots of Scripture Games">
</picture>
</div>
</div>
</div> <!-- END #dunesbg -->
</div> <!-- END #about -->
<div id="problem" class="section">
<div class="container">
<div class="row space">
<h1>Features</h1>
</div>
<div class="row featureRow">
<div class="col-md-6 feature">
<div class="featureBadge">
<object data="images/feature-badge.svg" type="image/svg+xml" alt="Feature icon"></object>
</div>
<h2>Challenge Friends Online</h2>
<p>Sign in with Google to challenge friends or random opponents and slay them with your scriptural knowledge.</p>
</div>
<div class="col-md-6 feature">
<div class="featureBadge">
<object data="images/feature-badge.svg" type="image/svg+xml" alt="Feature icon"></object>
</div>
<h2>Achievements</h2>
<p>Earn achievements such as hole-in-one and hidden achievements as you play.</p>
</div>
</div>
<div class="row featureRow">
<div class="col-md-6 feature">
<div class="featureBadge">
<object data="images/feature-badge.svg" type="image/svg+xml" alt="Feature icon"></object>
</div>
<h2>Doctrinal Mastery</h2>
<p>Memorize doctrinal mastery in a fun and challenging way.</p>
</div>
<div class="col-md-6 feature">
<div class="featureBadge">
<object data="images/feature-badge.svg" type="image/svg+xml" alt="Feature icon"></object>
</div>
<h2>Select Multiple Books</h2>
<p>Play from a single book, or a combination of books for a more difficult challenge.</p>
</div>
</div>
</div>
</div>
<div id="gif" class="section">
<div class="full bump">
<div class="container">
<div class="row space">
<h1>Walk-through</h1>
</div>
<div id="youtube" class="col-md-12">
<iframe width="560" height="315" src="https://www.youtube.com/embed/QrLn2UhGXCE" frameborder="0" allowfullscreen></iframe>
</div>
</div>
</div>
</div>
<div id="signup" class="section">
<div class="full bump">
<div class="container">
<div class="col-md-12" id="iOSSignUp">
<object id="moses-mad" data="images/moses-mad.svg" type="image/svg+xml" alt="Angry scripture games mascot"></object>
<h2>Sorry, Scripture Games isn't ready for iOS yet</h2>
<h2>Sign up to get notified when it is:</h2>
<form action='https://www.getform.org/f/427089fe-3670-4581-bbe0-289d40d2e796' method="POST"></form>
<input type="email" name="email" placeholder="email address"><br>
<button type="submit" name="submit">Notify Me</button>
</form>
</div>
<div class="col-md-12" id="thanks"><h2>Thanks!</h2></div>
</div>
</div>
</div>
<footer class="section">
<div id="footerbg">
<div class="full bump">
<div class="container" id="footerfg">
<div id="footer-row" class="row">
<div class="col-xs-12">
<div class="button-wrapper">
<a class="asvg" href="https://play.google.com/store/apps/details?id=com.tengentllc.scripturegolf&referrer=Scripturegames.com"><object data="images/google-play-badge.svg" type="image/svg+xml" alt="Google Play store button"></object></a>
</div>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<ul id="social">
<li><a href="https://www.facebook.com/scripturegames/" title="LDS Scripture Games Facebook page"><i class="fa fa-facebook-square"></i></a></li>
<li><a href="mailto:[email protected]" title="Email me"><i class="fa fa-envelope"></i></a></li>
</ul>
</div>
</div>
<div class="row">
<div class="col-xs-12">
<p>© 2017 TengenT LLC. All rights reserved.</p>
</div>
<div class="col-xs-12"><a href="privacy.html" title="privacy policy">Privacy Policy</a></div>
</div>
</div>
</div>
</div>
</footer>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-54432915-1', 'auto');
ga('send', 'pageview');
</script>
<!-- Place this tag in your head or just before your close body tag. -->
<script src="https://apis.google.com/js/platform.js" async defer></script>
</body>
</html>