-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathfaq.html
84 lines (79 loc) · 3.96 KB
/
faq.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Atheme IRC Platform - FAQs</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Atheme IRC Services">
<meta name="author" content="Alyx Wolcott">
<meta name="author" content="Andrew Northall">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/atheme-style.css" rel="stylesheet">
<link href="css/font-awesome.min.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="js/html5shiv.js"></script>
<script src="js/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="navbar navbar-inverse navbar-static-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<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">Atheme Development Group</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav navbar-right">
<li><a href="https://atheme.github.io/"><span class="fa fw-fw fa-external-link-square"></span>atheme Development Group</a></li>
</ul>
<ul class="nav navbar-nav">
<li><a href="index.html"><span class="fa fa-fw fa-home"></span> Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown"><span class="fa fa-fw fa-group"></span> Components <b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="atheme.html"><span class="fa fa-fw fa-group"></span> Atheme Services</a></li>
</ul>
</li>
<li class="active"><a href="faq.html"><span class="fa fw-fw fa-question"></span> FAQ</a></li>
<li><a href="https://github.com/atheme"><span class="fa fw-fw fa-github"></span> GitHub</a></li>
<li><a href="contact.html"><span class="fa fw-fw fa-envelope"></span> Contact</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="jumbotron">
<h1>Frequently Asked Questions</h1>
<p class="lead">About the Atheme IRC Platform</p>
</div>
<div class="row">
<div class="col-md-6">
<h2>Who develops Atheme?</h2>
<p>Atheme is developed by the <a href="https://atheme.github.io/">Atheme Development Group</a>, an open-source development collective.
Anyone can participate in the Atheme development process through <a href="https://github.com/atheme/atheme">GitHub</a>.
Contributors with an acceptable skillset and broad vision for the project are given commit access.</p>
<h2>How scalable is Atheme?</h2>
<p>Atheme is extremely scalable, being used on many of IRC's largest networks, such as <a href="https://libera.chat">LiberaChat</a>.</p>
</div>
<div class="col-md-6">
<h2>Where did Atheme come from?</h2>
<p>Atheme was originally built on top of <a href="https://github.com/rakaur/shrike">Shrike</a>, a legacy minimalistic services package.
The developers of Atheme decided that Shrike was a good basis to build a more full-featured services package from,
based on their previous experience of contributing to Shrike. Little of the original code from Shrike remains,
however many design concepts do.</p>
</div>
</div>
<hr>
<footer>
<p>© <a href="https://atheme.github.io/" style="color:black;">atheme Development Group</a> 2012-2020</p>
</footer>
</div>
<script src="js/jquery-1.11.0.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>