-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcontact.php
35 lines (31 loc) · 1.33 KB
/
contact.php
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
<html>
<head>
<?php include 'head.php'; ?>
</head>
<body>
<div id="container">
<?php include 'header.php'; ?>
<div id="spacer"><img src="img/barstaff.png" alt="staff2circuit" style="width:900px"></div>
<div id="content-container">
<?php include 'navigation.php'; ?>
<div id="content">
<h2>Contact Us</h2>
<ul>
<li>Community announcements and questions: <a href="mailto:community@ismir.net" target="_top">community@ismir.net</a></li>
<li>Technical support with the website: <a href="mailto:webmaster@ismir.net" target="_top">webmaster@ismir.net</a></li>
<li>ISMIR Board: <a href="mailto:board@ismir.net" target="_top">board@ismir.net</a></li>
<li>ISMIR 2016: <a href="mailto:ismir2016@ismir.net" target="_top">ismir2016@ismir.net</a></li>
</ul>
<h2>Notice something wrong? Want to help?</h2>
<p>Good news! This website is maintained on <a href="https://github.com/ismir/ismir_web">github</a>.
</p>
<ul>
<li>If you find any mistakes or missing information, please add to our backlog of <a href="https://github.com/ismir/ismir_web/issues">issues</a>.</li>
<li>If you're feeling particularly ambitious and would like to help out, we gladly welcome <a href="https://github.com/ismir/ismir_web/pulls">pull requests</a> and collaborators!</li>
</ul>
</div>
<?php include 'footer.php'; ?>
</div>
</div>
</body>
</html>