-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
72 lines (71 loc) · 2.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Cornell Mafia Club</title>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" type="text/css" href="https://maxcdn.bootstrapcdn.com/bootswatch/3.3.7/slate/bootstrap.min.css">
<style>
.Town {
background-image: linear-gradient(#080, #000 50%);
}
.Mafia {
background-image: linear-gradient(#800, #000 50%);
}
.Third {
background-image: linear-gradient(#008, #000 50%);
}
.Fourth {
background-image: linear-gradient(#808, #000 50%);
}
footer {
background: #000;
width: 100%;
bottom: 0;
position: fixed;
padding: 5px;
}
</style>
</head>
<body>
<div class="container">
<h1>Cornell Mafia Club</h1>
<div class="text-warning">
<!-- warnings/announcements go here -->
<!-- <p>Gaslighter was always there</p> -->
</div>
<p>
Mafia is a fun game of lies, logic, and psychology. We play Mafia with a
large variety of exciting roles which can be found below.
</p>
<p>
If you want to know how we play, <a href="/rules">these are the rules</a>.
</p>
<p><span style="background:#007;border-radius:20px;padding:5px;margin-right:5px">NEW</span><a href="/mod">Moderation UI (test)</a></p>
<p>
We meet Fridays at 9pm ET. Free snacks!
</p>
<!-- Initialized by index.js from json data -->
<ul id="tier-tabs" class="nav nav-tabs">
</ul>
<div id="tiers" class="tab-content">
</div>
<br>
<button id="calendarShow" class="collapsible btn btn-default" align="center">Collapse Calendar</button>
<div id="cal" class="text-warning">
<p>Friday 9pm: Mafia!</p>
<p>2/30/24: Gaslighting!</p>
</div></div>
<footer>This organization is a registered student organization of Cornell University.</footer>
<script type="text/javascript" src="/main.js"></script>
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script type="text/javascript" src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"></script>
<script type="text/javascript" src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/list.js/1.5.0/list.min.js"></script>
<script type="text/javascript" src="/index.js"></script>
<script type="text/javascript" src="/collapse.js"></script>
</body>
</html>