-
Notifications
You must be signed in to change notification settings - Fork 0
/
code.html
159 lines (122 loc) · 4.2 KB
/
code.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no">
<meta name="description" content="Elkyr Events">
<meta name="author" content="k1">
<title>Cover Template for Bootstrap</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css">
<!-- Custom styles for this template -->
<link href="cover.css" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style>
#map-canvas {
height: 250px;
width: 250px;
margin: 0px;
padding: 0px
}
</style>
<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&signed_in=false"></script>
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">Cover</h3>
<nav>
<ul class="nav masthead-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="#">Features</a></li>
<li><a href="#">Contact</a></li>
</ul>
</nav>
</div>
</div>
<div id="map-canvas"></div>
<div class="inner cover">
<h1 class="cover-heading">Cover your page.</h1>
<p class="lead">Cover is a one-page template for building simple and beautiful home pages. Download, edit the text, and add your own fullscreen background photo to make it your own.</p>
<p class="lead">
<a href="#" class="btn btn-lg btn-default">Learn more</a>
</p>
</div>
<div class="mastfoot">
<div class="inner">
<p id="dayyoos">Cover template for <a href="http://getbootstrap.com">Bootstrap</a>, by <a href="https://twitter.com/mdo">@mdo</a>.</p>
</div>
</div>
</div>
</div>
</div>
<script src="http://code.jquery.com/jquery-2.1.3.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.2/js/bootstrap.min.js"></script>
<script>
$(document).ready(function(){
});
function formatEbPopular() {
if ($("#dayyoos").data("skey") == 11){
return "popular=off&";
}
return "popular=on&";
}
function formatEbCategories() {
choice = $("#dayyoos").data("skey");
if (choice == 1)
return "q=party&categories=103%2C+104%2C+106%2C+110%2C+116%2C+119+%2C+199&";
if (choice == 2)
return "categories=103&";
if (choice == 3)
return "categories=110&";
if (choice == 4)
return "categories=119%2C+117%2C+115%2C+113%2C+110&";
if (choice == 5)
return "categories=108&";
if (choice == 6)
return "categories=109&";
if (choice == 7)
return "categories=111&";
if (choice == 8)
return "categories=102&";
if (choice == 9)
return "categories=114&";
if (choice == 10)
return "categories=105&";
return "";
}
function formatMuCategories() {
choice = $("#dayyoos").data("skey");
if (choice == 1)
return "category=5,21&";
if (choice == 2)
return "category=21&";
if (choice == 3)
return "category=10&";
if (choice == 4)
return "category=1,4,8,11,14,17&";
if (choice == 5)
return "category=9&";
if (choice == 6)
return "category=9&";
if (choice == 7)
return "category=4&";
if (choice == 8)
return "category=6&";
if (choice == 9)
return "category=22&";
if (choice == 10)
return "category=20,18,1&";
return "";
}
</script>
</body>
</html>