-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
120 lines (96 loc) · 5.97 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>GCBot</title>
<meta name="description" content="Website for the GCBot library">
<meta name="author" content="Evan Jesty and Ryan Ly">
<link rel="stylesheet" href="css/gcbot.css">
<link rel="stylesheet" href="css/controls.css">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,700" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
</head>
<body>
<div id="main-container">
<div id="header">
<div id="gcbot">GCBot<span id="gcbot-sub"> discord bot</span>
</div>
<div id="github"><a href='https://github.com/Monkeycapers/GCBot/' id ='github'><img src="image/github.png" class ='githubimage'></a></div>
</div>
<div id="content">
<!-- "PROMO" bar -->
<div id ="promo">
<div id = "promo1" class = "promo-item">
<div class = "promo-image">
<img id = "styleimage" src = "svg/style.svg">
</div>
<div class = "promo-desc">
GCBot is extendable with custom plugins! It's completely modular - you don't even need to reboot the bot!
</div>
</div>
<div id = "promo2" class = "promo-item">
<div class = "promo-image">
<img id = "headphonesimage" src = "svg/headphones.svg">
</div>
<div class = "promo-desc">
GCBot comes with a full featured music player! Using our Reactions framework, it provides a clean and simple interface for your users to control the music.
</div>
</div>
<div id = "promo3" class = "promo-item">
<div class = "promo-image">
<img id = "otherimage" src = "svg/download.svg">
</div>
<div class = "promo-desc">
GCBot is easy to setup and configure. It's also completely open source and free to use, download, and modify!
</div>
</div>
</div>
<div id = "button-wrapper">
<a href="https://github.com/Monkeycapers/GCBot/" class = "button1">Get the code</a>
<a href="docs.html" class = "button1 right-button">Read the docs</a>
<a href="plugins.html" class = "button1 right-button">See the plugins</a>
</div>
<!-- Everything after the promo bar -->
<div id = "content-wrapper">
<div id="main-content">
<div id = "about" class = "content-block">
<p class= "main-header">About</p>
<p>GCBot is a Discord bot made with the discord.py library. It is designed to be completely modular and extremely easy to set up and use.
All functionality comes from the plugins, meaning you decide what you want your bot to do.
Know some Python? Our plugin system is incredibly simple, so you can start adding custom commands to your bot right away! This bot was made by
<a href="http://github.com/monkeycapers">Evan Jesty</a> and <a href="http://github.com/ryanlyrl">Ryan Ly</a>.</p>
</div>
<div id = "features-wrapper" class = "content-block">
<p class= "main-header">Features</p>
<div id = "features">
<div id = "features-left">
<ul class = "featurelist">
<li>Modular plugin system, allowing endless user customization using Python</li>
<li>Interactive music player for streaming from YouTube, Twitch, and more</li>
<li>More than 10 plugins included! <a href="plugins.html">See the full list here</a></li>
<li>Permissions system - Allows you to set role restrictions on commands</li>
<li>Reactions framework - Let your users control your plugins using reactions</li>
</ul>
<div id = "playerimage"><img id = "innerplayerimage" src = "image/gcbotpromo2.PNG"></div>
<!--
<div id = "helpimage"><img id = "helpimage" src = "image/gcbotpromo.png"></div>
<div id = "features-right">
</div>
-->
</div>
</div>
</div>
<div id = "faq-wrapper" class = "content-block">
<p class= "main-header">Frequently Asked Questions</p>
<div id = "faq">
<p><b>Why did you make this bot?</b></p>
<p>This bot is created by two students as an attempt to put our skills to use for something that we would be able to use everyday. In the end, we found that we liked having full control over how the bot works, and eventually we polished it up enough for a release.</p>
<p><b>I have a suggestion/issue!</b></p>
<p>If you're having an issue with your bot, or you have a suggestion for how to improve it, <a href="https://github.com/Monkeycapers/GCBot/issues">open an issue on our GitHub page</a>.</p>
</div>
</div>
</div>
</div>
</div>
</div>
</body>