-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathindex.html
More file actions
124 lines (93 loc) · 4.21 KB
/
index.html
File metadata and controls
124 lines (93 loc) · 4.21 KB
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.0/css/bootstrap.min.css"
integrity="sha384-PDle/QlgIONtM1aqA2Qemk5gPOE7wFq8+Em+G/hmo5Iq0CCmYZLv3fVRDJ4MMwEA" crossorigin="anonymous">
<style>
body,
html {
background: #2b3990;
background: linear-gradient(45deg, #2b3990 0%, #92278f 100%);
height: 100%;
}
footer {
color: white;
}
.btn-link {
color: white;
opacity: .5;
text-transform: uppercase;
font-size: .8em;
}
.btn-link:hover {
color: white;
opacity: 1;
text-decoration: none;
}
</style>
<title>Heat</title>
</head>
<body>
<div class="container h-100">
<div class="row h-100 justify-content-center align-items-center">
<div class="col-8">
<div class="row mb-4">
<div class="col text-center">
<a href="/"><img src="/images/heat.svg" width="360" height="128" class="img-fluid"></a>
</div>
</div>
<div class="row justify-content-center align-items-center text-center">
<div id="demos" class="btn-group" role="group" aria-label="Basic example">
<a class="demo btn btn-outline-light" href="/heatmap/">Heat</a>
<a class="demo btn btn-outline-light" href="/markers/">Markers</a>
<a class="demo btn btn-outline-light" href="/kissingbooth/">Kiss</a>
<a class="demo btn btn-outline-light" href="/sequence/">Sequence</a>
</div>
</div>
<div class="row justify-content-center align-items-center text-center">
<div id="demos" class="btn-group mt-2" role="group" aria-label="Basic example">
<a class="demo btn btn-outline-light" href="/baby/">Baby</a>
<a class="demo btn btn-outline-light" href="/paint/">Paint</a>
<a class="demo btn btn-outline-light" href="/vote/">Vote</a>
<a class="demo btn btn-outline-light" href="/tomatoes/">Tomatoes</a>
<!-- <a class="btn btn-outline-light" href="/warp/">Warp</a>
<a class="btn btn-outline-light" href="/pixel/">Pixel</a> -->
</div>
</div>
<footer class="row justify-content-center align-items-center text-center mt-4">
<a href="/" class="btn btn-link">Home</a> • <a href="/about/" class="btn btn-link">About</a>
• <a href="/help/" class="btn btn-link">Help</a>
</footer>
</div>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js"
integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo"
crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.0/js/bootstrap.min.js"
integrity="sha384-7aThvCh9TypR7fIc2HV4O/nFMVCBwyIUKL8XCtKE+8xgCgl/PQGuFsvShjr74PBp"
crossorigin="anonymous"></script>
<script>
(function () {
const params = (new URL(document.location)).searchParams;
const channel = params.get("channel") || params.get("channelID") || 97032862;
console.log(channel);
$(".demo").each(function (index, element) {
$(element).attr('href', $(element).attr('href') + "?channel=" + channel);
});
})();
</script>
<style>
.btn-container {
position: absolute;
bottom: 1em;
left: 1em;
}
</style>
<script type='text/javascript' src='https://storage.ko-fi.com/cdn/widget/Widget_2.js'></script>
<script
type='text/javascript'>kofiwidget2.init('Support Me on Ko-fi', '#0ab89d', 'H2H0I5NI8'); kofiwidget2.draw();</script>
</body>
</html>