-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (101 loc) · 4.51 KB
/
index.html
File metadata and controls
117 lines (101 loc) · 4.51 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Renegade BBS</title>
<!-- Bootstrap -->
<link href="bootstrap/dist/css/bootstrap.css" rel="stylesheet">
<link href="bootstrap/dist/css/bootstrap-theme.css" rel="stylesheet" />
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<link href='https://fonts.googleapis.com/css?family=Catamaran:400,100,200,300,500,700,600,800,900|Poller+One' rel='stylesheet' type='text/css' />
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/far.min.css">-->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.3.0/styles/atelier-savanna-dark.min.css">
<style type="text/css">
</style>
</head>
<body>
<div id="nav-container" class="container-fluid">
<div class="row">
<div class="col-md-12" id="nav-col">
<nav class="navbar navbar-inverse navbar-fixed-top" 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="/"><img src="img/rg-small.png" height="79" width="40"></a>
</div>
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="https://github.com/renegadebbs/renegade" rel="external">Github</a>
</li>
<li class="divider">
</li>
<li><a href="https://renegadebbs.info" rel="external">Legacy website</a></li>
</ul>
</li>
</ul>
</div>
</nav>
</div>
</div>
</div><!-- Container-fluid -->
<div class="container">
<div class="row">
<div class="col-md-12">
<div class="page-header">
<h1>
Renegade BBS
</h1>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>
Origin
</h3>
<p class="lead">
Renegade is an open source (ↄ) bulletin board system (BBS) written for IBM PC-compatible computers running MS-DOS that gained popularity among hobbyist BBSes in the early to mid 1990s. It was originally written by <strong>Cott Lang</strong> in Pascal, based on the source code of <a href="https://en.wikipedia.org/wiki/Telegard" rel="external">Telegard</a>, which was in turn based on the earlier <a href="https://en.wikipedia.org/wiki/WWIV" rel="external">WWIV</a>.
</p>
</div>
</div>
<div class="row">
<div class="col-md-12">
<h3>Future</h3>
<p class="lead">
The current plan for renegade is to rewrite/update the code to Free Pascal v3.x making it easier to compile on more operating systems, as well as bringing the code up to modern standards and practices.
You can view the <a href="https://github.com/renegadebbs/renegade/wiki/Roadmap" rel="external">roadmap</a> on the <a href="https://github.com/renegadebbs/renegade/wiki" rel="external">wiki</a>.
</p>
</div>
</div>
<footer class="footer">
<div class="row">
<div class="col-md-4">
<p>(ↄ) 2016 Renegade BBS</p>
</div>
<div class="col-md-4"></div>
<div class="col-md-4">
<iframe src="https://ghbtns.com/github-btn.html?user=renegadebbs&repo=renegade&type=fork&count=true" frameborder="0" scrolling="0" width="170px" height="20px"></iframe>
</div>
</div>
</footer>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bootstrap/dist/js/bootstrap.js"></script>
<script src="js/highlight.pack.js"></script>
<script>hljs.initHighlightingOnLoad();</script>
<script src="js/common.js"></script>
</body>
</html>