-
Notifications
You must be signed in to change notification settings - Fork 0
/
signers.html
82 lines (67 loc) · 2.91 KB
/
signers.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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QSMN8F8V2J"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QSMN8F8V2J');
</script>
<meta charset="utf-8">
<title>Fire Chris Holtmann | Petition Signers</title>
<script src="https://code.jquery.com/jquery-3.2.1.min.js" ></script>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Golos+Text:wght@500;600&display=swap" rel="stylesheet">
<link rel="canonical" href="https://fireholtmann.com/signers.html">
<meta name="keywords" content="fire holtmann, fire chris holtmann, chris holtmann, holtmann, ohio state, ohio state basketball, osu basketball, fix ohio state basketball, fix chris holtmann">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<meta name="description" content="After going 1-14, Chris Holtmann needs to go. Sign the petition with just your name to tell Ohio State Athletics that same message.">
<meta property="og:title" content="Sign the Petition">
<meta property="og:site_name" content="Fire Holtmann">
<meta property="og:url" content="https://fireholtmann.com">
<meta property="og:description" content="After going 1-14, Chris Holtmann needs to go. Sign the petition with just your name to tell Ohio State Athletics that same message.">
<meta property="og:type" content="website">
<meta property="og:image" content="https://fireholtmann.com/thumb.png">
<link rel="stylesheet" href="/main.css">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
<link rel="manifest" href="/site.webmanifest">
</head>
<body>
<h1><a href="/">FIRE CHRIS HOLTMANN.</a></h1>
<br><br>
<p class="title">Petition Signers (<span id="count">a lot</span>)</p>
<br>
<div id="names">
<p>Loading...</p>
</div>
<br><br><br>
<script>
if (String(window.location).includes("script.google.com")) {
window.location = "https://fireholtmann.com/signers.html"
}
$.getJSON('https://script.google.com/macros/s/AKfycbwd88FyL_h57V0nKs47Mj6ylUL8yhnEW-2uSEbitoTuyd42wcRmKiubR4CgpLEV9ba8Hw/exec', function(data) {
var html = ""
for (i = 0; i < data.firstNames.length; i++) {
html = html + `
<p>${i+1}: ${data.firstNames[i][0]} ${data.lastNames[i][0]} from ${data.states[i][0]}<p>
`
}
$("#names").html(html);
$("#count").html(data.firstNames.length);
});
</script>
<style>
body {
margin: 0 5vw
}
p:not(.title) {
text-align: left;
}
</style>
</body>
</html>