-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.shtml
56 lines (43 loc) · 2.32 KB
/
index.shtml
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
<!DOCTYPE html>
<html>
<head>
<title>You Can't Say That!</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.css" />
<script src="http://code.jquery.com/jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/mobile/1.3.2/jquery.mobile-1.3.2.min.js" type="text/javascript"></script>
<script src="challenge_data.js"></script>
<script src="logic.js"></script>
<link href='http://fonts.googleapis.com/css?family=Jacques+Francois|Roboto' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/ycst_default.css" />
</head>
<body>
<div data-role="page" style="max-height:440px; min-height:440px;" class="type-home" class="ui-responsive-panel">
<!--Header-->
<div data-role="header">
<a href="#leftpanel" data-role="button" data-icon="grid" class="ui-btn-left" data-inline="true" data-iconpos="notext" data-mini="true">Push</a>
<h1>You Can't Say That!</h1>
<a href="#rightpanel" data-role="button" data-icon="info" class="ui-btn-right" data-inline="true" data-iconpos="notext" data-mini="true">Push</a>
</div>
<!--Content Area-->
<div data-role="content" id="mainContent"></div>
<!--Start Footer Nav-->
<div data-role="footer" id="footerNav"></div>
<!--Past Challenges Panel Content-->
<div data-role="panel" id="leftpanel" data-position="left" data-display="push" data-dismissible="true">
<div class="panel-content">
<!--#include file="past_challenges_panel.shtml"-->
<a href="#demo-links" data-rel="close" data-role="button" data-theme="c" data-icon="delete" data-inline="true">Close panel</a>
</div><!-- Close Panel Content -->
</div><!-- Close Panel -->
<!--Info Panel Content-->
<div data-role="panel" id="rightpanel" data-position="right" data-display="push" data-dismissible="true">
<div class="panel-content">
<!--#include file="info_panel.shtml"-->
<a href="#demo-links" data-rel="close" data-role="button" data-theme="c" data-icon="delete" data-inline="true">Close panel</a>
</div><!-- Close Panel Content -->
</div><!-- Close Panel -->
</div><!--Close Page Div-->
</body>
</html>