-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (59 loc) · 1.74 KB
/
index.html
File metadata and controls
63 lines (59 loc) · 1.74 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<title>Coldstorm</title>
<link rel="stylesheet" href="//bootswatch.com/slate/bootstrap.min.css" />
<script
src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<meta name="viewport"
content="width=device-width, initial-scale=1, user-scalable=no">
<style type="text/css">
body {
padding-top: 30px;
}
</style>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="container">
<a class="navbar-brand" href="/">Coldstorm</a>
<ul class="nav navbar-nav">
<li class="active"><a href="#">Home</a></li>
<li><a href="/coldstorm/">Web Client</a></li>
<li><a href="/DesktopCS/">Desktop Client</a></li>
<li class="disabled"><a href="#">Android Client</a></li>
</ul>
</div>
</div>
<div class="container">
<div class="page-header">
<h1>
Coldstorm
<small>Flexible IRC clients</small>
</h1>
</div>
<div class="row">
<div class="col-lg-4">
<h2>Web Client</h2>
<p>
We built an IRC client from the ground up using AngularJS and jQuery.
</p>
</div>
<div class="col-lg-4">
<h2>Desktop Client</h2>
<p>
You can get the same experience as the Web Client without ever needing to visit the website.
</p>
</div>
<div class="col-lg-4">
<h2>Want to help?</h2>
<p>
All of our projects are open source, which means you can always help contribute to the project easily.
</p>
</div>
</div>
</div>
</body>
</html>