-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
105 lines (98 loc) · 4.12 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
var enforce = "boombot.github.io";
if ((enforce == window.location.host) && (window.location.protocol != "https:"))
window.location = window.location.toString().replace(/^http:/, "https:");
</script>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>BoomBot - A Simple Discord Bot.</title>
<meta name="description" content="BoomBot - A Simple Discord Bot">
<meta name="author" content="Lomeli12">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
<link rel="canonical" href="https://boombot.github.io" />
</head>
<body>
<div class="container-fluid">
<div class="row">
<div class="col-md-12">
<nav class="navbar navbar-default" role="navigation">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1">
<span class="sr-only">Toggle navigation</span><span class="icon-bar"></span><span class="icon-bar"></span><span class="icon-bar"></span>
</button> <a class="navbar-brand" href="index.html">BoomBot</a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li>
<a href="doc.html">Documentation</a>
</li>
<li>
<a href="https://github.com/BoomBot" target="_blank">View on GitHub</a>
</li>
<li>
<a href="https://discord.gg/keFz3ZP" target="_blank">Join our Discord</a>
</li>
</ul>
</div>
</nav>
<div class="jumbotron well">
<img style="float:left" src="https://raw.githubusercontent.com/BoomBot/BoomBot/master/src/main/resources/avatar.png" alt="BoomBot logo">
<h2>
BoomBot
</h2>
<p>
BoomBot is a simple bot for Discord. It provides quick access to basic moderating features and fun features for regular users.
</p>
<p>
<a class="btn btn-primary btn-large" href="https://discordapp.com/oauth2/authorize?client_id=172272810033545216&scope=bot&permissions=3072">Add BoomBot to your server!</a>
<a class="btn btn-info btn-large" href="https://discord.gg/keFz3ZP">Join the BoomBot Server!</a>
</p>
</div>
</div>
</div>
<div class="row">
<div class="col-md-4">
<h2>
Customizable
</h2>
<p>
Change the delay, who can use commands, and create custom commands that are server specific.
</p>
<p>
<a class="btn" href="doc.html#customize">View details »</a>
</p>
</div>
<div class="col-md-4">
<h2>
Extensible
</h2>
<p>
BoomBot can gain additional functionality through use of plugins!
</p>
<p>
<a class="btn" href="doc.html#plugins">View details »</a>
</p>
</div>
<div class="col-md-4">
<h2>
Open Sourced
</h2>
<p>
BoomBot is completely open source, anyone can help out and add features!
</p>
<p>
<a class="btn" href="https://github.com/BoomBot/BoomBot">View details »</a>
</p>
</div>
</div>
</div>
<script src="js/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/scripts.js"></script>
</body>
</html>