-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (54 loc) · 2.75 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
<html lang="en">
<head>
<meta charset="utf-8">
<!--[if IE]><meta http-equiv='X-UA-Compatible' content='IE=edge,chrome=1'><![endif]-->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Pyfibot</title>
<link href="bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href='//fonts.googleapis.com/css?family=Noto+Serif:400,700' rel='stylesheet' type='text/css'>
<style type="text/css"></style>
</head>
<body>
<div class="container">
<div class="header">
<ul class="nav nav-pills pull-right">
<li class="active"><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="https://github.com/lepinkainen/pyfibot" target="_blank">Github</a></li>
<li><a href="https://github.com/lepinkainen/pyfibot/wiki" target="_blank">Wiki</a></li>
</ul>
<h3><a href="/#" class="text-muted title"><span>Pyfibot</span></a></h3>
</div>
<div class="jumbotron">
<h1>A Python IRC-bot made using the <a href="http://twistedmatrix.com/trac/">Twisted Matrix</a> IRC-library.</h1>
<p class="lead">
Supports online module reloading - only major core changes require a restart. Extensive module & handler -support for easy extension and customization.
Check the <a href="https://github.com/lepinkainen/pyfibot/wiki/Installation">Installation instructions</a> and the module <a href="https://github.com/lepinkainen/pyfibot/wiki/Module-HOWTO">HOWTO.
</p>
<p><a class="btn btn-lg btn-success" href="https://github.com/lepinkainen/pyfibot" role="button">Jump right in!</a></p>
</div>
<div class="row marketing">
<div class="col-lg-4">
<h3 class="step">Clone</h3>
<img class="step" src="clone.png" alt="first">
<p>To start, grab the Pyfibot repository url from Github. Refer to <a href="https://github.com/lepinkainen/pyfibot/wiki/Installation">Installation instructions</a> and preconditions for more detailed info.</p>
</div>
<div class="col-lg-4">
<h3 class="step">Setup</h3>
<img class="step" src="steps.png" alt="second">
<p>Get your environment configured for easy deployment. There are a few different ways to do this, choose what suits you the best!</p>
</div>
<div class="col-lg-4">
<h3 class="step">Connect</h3>
<img class="step" src="launch.png" alt="third">
<p>Finish the deal by editing the example configuration and launching the bot!</p>
</div>
</div>
<br>
<div class="footer">
<p>Page via <a href="http://twitter.com/rnbrg">@RNbrg</a> 2014</p>
</div>
</div>
</body>
</html>