-
Notifications
You must be signed in to change notification settings - Fork 35
/
contacts.html
126 lines (102 loc) · 4.86 KB
/
contacts.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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Contact OpenWorm</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="How to contact OpenWorm">
<!-- REPLICATE THIS IN ALL PAGES -->
<!-- Le styles -->
<link href="css/bootstrap.css" rel="stylesheet">
<link rel="stylesheet" href="css/font-awesome.css">
<link href="css/bootstrap-responsive.css" rel="stylesheet">
<link href="css/main.css" rel="stylesheet">
<link href="css/docs.css" rel="stylesheet">
<!-- HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<!-- Fav and touch icons - this code is outdated -->
<link rel="shortcut icon" href="favicon.ico">
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="../assets/ico/apple-touch-icon-144-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="../assets/ico/apple-touch-icon-114-precomposed.png">
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="../assets/ico/apple-touch-icon-72-precomposed.png">
<link rel="apple-touch-icon-precomposed" href="../assets/ico/apple-touch-icon-57-precomposed.png">
<div class="navbar navbar-inverse navbar-fixed-top">
<div class="navbar-inner" id="head-nav">
</div>
</div>
<script src="js/jquery-3.6.0.js"></script>
<script>
// get head-nav and foot-nav with jquery (get is async)
$.get('header-content.html', function(data) {
$('#head-nav').html(data);
})
$.get('footer-content.html', function(data) {
$('#foot-nav').html(data);
})
</script>
</head>
<body>
<div id="pjax-content">
<!-- END REPEAT-->
<header class="jumbotron subhead" id="overview">
<div class="container">
<h1>Contact us</h1>
<p class="lead">
Have some feedback? Need some information? Want to join?<br/>
We'd love to hear from you.
</p>
</div>
</header>
<div class="container">
<div class="page-header">
<h1 style="float: left;">Join the discussion!</h1><i class="fa fa-slack fa-l" style="float: right;"></i>
<div class="clearer"></div>
</div>
<p class="lead">
We use Slack to communicate and coordinate our daily activities, you are welcome to join us! For an invitation, fill out <a href="https://goo.gl/3ncZWn" target="_blank">our volunteer application form</a>.
</p>
<div class="large-spacer"></div>
<div class="page-header">
<h1 style="float: left;">Interact with us on social media!</h1><i class="fa fa-twitter fa-l" style="float: right;"></i>
<div class="clearer"></div>
</div>
<p class="lead">
For ongoing information about OpenWorm, please follow our <a href="https://openworm.tumblr.com/" target="_blank">blog</a> on tumblr.
You can also follow us and interact on <a href="https://twitter.com/OpenWorm" target="_blank">Twitter</a> and <a href="https://www.facebook.com/OpenWorm" target="_blank">Facebook</a> for more frequent updates.
</p>
<div class="large-spacer"></div>
<div class="page-header">
<h1 style="float: left;">Follow the code!</h1><i class="fa fa-github fa-l" style="float: right;"></i>
<div class="clearer"></div>
</div>
<p class="lead">
You can follow ongoing developments in the various software development projects of OpenWorm on <a href="https://github.com/openworm/OpenWorm/milestones" target="_blank">GitHub</a>.
</p>
<div class="large-spacer"></div>
<div class="page-header">
<h1 style="float: left;">Drop us a line!</h1><i class="fa fa-envelope fa-l" style="float: right;"></i>
<div class="clearer"></div>
</div>
<p class="lead">We'd love to hear from you! You should feel free to contact us with feedback, questions, partnership proposals, or other inquiries at <a href="mailto:[email protected]">info<b>at</b>openworm.org</a>.
</p>
</div>
<!-- FOOT: DUPLICATE THE FOLLOWING IN ALL PAGES -->
</div><!-- end pjax content -->
<!-- footer
================================================== -->
<div id="foot-nav"></div>
<!-- foot-nav is filled with script in head -->
<!-- Le javascript
================================================== -->
<!-- at end of the document so the pages load faster -->
<!-- load other resources asynchronously: -->
<script src="js/bootstrap.js" async></script>
<script src="js/jquery.parss.uncompressed.js" async></script>
<script src="http://platform.twitter.com/widgets.js" async></script>
<!-- execute main (initialize resources above + carousel/donate controls -->
<script src="js/jquery.pjax.js"></script>
<script src="js/main.js" defer></script>
</body>
</html>