-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 2.96 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Basic Page Needs
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta charset="utf-8">
<title>Bracketeer</title>
<meta name="description" content="Discord bot for organizing tournaments">
<meta name="author" content="Matt Braddock">
<!-- Mobile Specific Metas
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- FONT
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link href="//fonts.googleapis.com/css?family=Raleway:400,300,600" rel="stylesheet" type="text/css">
<!-- CSS
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="stylesheet" href="frameworks/normalize.css">
<link rel="stylesheet" href="frameworks/skeleton.css">
<style>
a {
color: black;
}
</style>
<!-- Favicon
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<!-- Primary Page Layout
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
<div class="container">
<div class="row">
<div class="two-thirds column" style="margin-top: 5%">
<h4>Bracketeer</h4>
<p>A Discord bot that will run tournaments in your server.</p>
<p><a class="button button-primary" href="https://discord.com/oauth2/authorize?client_id=792527907616194602&scope=bot%20applications.commands&permissions=34816">Invite to Server</a> <a class="button" href="viewer.html">View Live Tournaments</a></p>
<h5>What Can It Do?</h5>
<ul>
<li>Run single and double elimination tournaments, with or without initial seeding</li>
<li>Run Swiss, round-robin, and double round-robin tournaments with elimination playoffs</li>
<li>Display pairings and standings online in real-time, and post new matches in Discord as they become active.</li>
</ul>
<p>Utilizes the <a href="https://github.com/slashinfty/tournament-organizer">tournament-organizer</a> package.</p>
<p><a class="button" href="https://github.com/slashinfty/bracketeer/issues/new/choose">Report a Problem</a></p>
</div>
</div>
</div>
<!-- End Document
–––––––––––––––––––––––––––––––––––––––––––––––––– -->
</body>
</html>