-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathchat.html
104 lines (73 loc) · 3.69 KB
/
chat.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
<!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">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../assets/ico/favicon.ico">
<title>Monthly Chat - LibTechWomen</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="cover.css" rel="stylesheet">
<link href="font-awesome-4.0.3/css/font-awesome.css" rel="stylesheet">
<link rel="stylesheet" href="font-awesome-4.0.3//css/font-awesome.min.css">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<div class="site-wrapper">
<div class="site-wrapper-inner">
<div class="cover-container">
<div class="masthead clearfix">
<div class="inner">
<h3 class="masthead-brand">LibTechWomen</h3>
<ul class="nav masthead-nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li class="active"><a href="chat.html">Monthly Chat</a></li>
</ul>
</div>
</div>
<div class="inner cover">
<h1 class="cover-heading">Monthly Chat</h1>
<p class="lead">Join our monthly chat on <a href="http://webchat.freenode.net/">IRC</a>! (channel: #libtechwomen) <br/>Every 1st Friday of the Month, 2-3pm EST.
</p>
<p><a href="http://webchat.freenode.net/" class="btn btn-lg btn-default">#libtechwomen on IRC</a></p>
<div class="highlight">
<h4>New to IRC? </h4>
<p>Check <a href="https://plus.google.com/+BohyunKim/posts/fgGpVovA4qT">this simple instruction.</a></p>
</div>
</div>
<div class="mastfoot">
<div class="inner">
<p>
<a href="http://twitter.com/libtechwomen"><i class="fa fa-twitter fa-2x"></i></a>
<a href="https://www.facebook.com/libtechwomen"><i class="fa fa-facebook fa-2x"></i></a>
<a href="https://plus.google.com/communities/104044326453478230968"><i class="fa fa-google-plus fa-2x"></i></a>
<a href="https://groups.google.com/forum/?fromgroups#!forum/libtechwomen"><i class="fa fa-user fa-2x"></i></a>
<a href="http://libtechwomen.tumblr.com/"><i class="fa fa-tumblr fa-2x"></i></a>
<a href="https://github.com/LibTechWomen"><i class="fa fa-github fa-2x"></i></a>
<a href="mailto:libtechwomen@gmail.com"><i class="fa fa-envelope fa-2x"></i></a>
</p>
<p>© 2014 LibTechWomen</p>
</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/docs.min.js"></script>
</body>
</html>