-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
79 lines (76 loc) · 3.4 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Yet Another Project</title>
<meta name="description" content="">
<meta name="author" content="Yet Another Project group">
<!-- HTML5 shim, for IE6-8 support of HTML elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- styles -->
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.4.0/bootstrap.min.css">
<link rel="stylesheet" type="text/css" href="/styles/default.css">
<!-- scripts -->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-modal.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-dropdown.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-scrollspy.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-tabs.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-twipsy.js"></script>
<script type="text/javascript" src="http://twitter.github.com/bootstrap/1.4.0/bootstrap-popover.js"></script>
<script type="text/javascript" src="/scripts/default.js"></script>
<script>
$(document).ready(function () {
$('.topbar').dropdown()
.scrollSpy()
$('.tabs').tabs()
$("a[rel=twipsy]").twipsy({
live: true
})
$("a[rel=popover]").popover({
}).click(function(e) {
e.preventDefault()
})
});
</script>
</head>
<body>
<div class="topbar">
<div class="fill">
<div class="container">
<a class="brand" href="/">YAP</a>
<ul class="nav">
<li><a href="/about/">About</a></li>
<li><a href="/projects.html">Projects</a></li>
<li><a href="/education.html">Education</a></li>
</ul>
<ul class="nav secondary-nav">
<li><a href="/contact.html">Contact</a></li>
<li class="menu"><a href="https://github.com/yet-another-project">GitHub Home</a></li>
</ul>
</div>
</div>
</div>
<div class="container">
<div class="content">
<div class="row">
<div class="span14">
<h1>Contact<h1>
<p>You can always contact us either via e-mail at
<a href="mailto:[email protected]">[email protected]</a>
or on IRC: <b>#yet-another-project</b> @ freenode.net.</p>
<p>To subscribe to the mailing list, simply send a message to that address. You
will need to confirm the subscription.</p>
<p><b>Note:</b>These contact details are for the group, not for particular projects.
Each project may have its own communication channels (IRC, E-Mail).</p>
</div>
</div>
</div>
<footer>
<p>© Yet Another Project 2012</p>
</footer>
</div>
</body>
</html>