forked from lars-kolbowski/xiSPEC_website
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcontact.php
executable file
·107 lines (105 loc) · 3.51 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
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
<!DOCTYPE HTML>
<html>
<head>
<?php
$pageName = "Contact";
include("head.php");
include("xiSPEC_scripts.php");
?>
</head>
<body>
<!-- Sidebar -->
<?php include("navigation.php");?>
<!-- Main -->
<div id="main">
<!-- Intro -->
<section id="top" class="one contact-section">
<div class="container">
<h1 class="page-header">Contact The Team</h1>
<div class="contactGroup">
<table>
<tr>
<td>
<div class="contact no-hover">
<ul id="navlist" class="no-hover">
<li><a href="mailto:[email protected]" title="Email Lars!">
<img src="images/team/lars-kolbowski.jpg" class="grayscale" />
</a></li>
</ul>
<div class="external-link">
<p>
<strong>Lars Kolbowski</strong>
<br/><a href="mailto:[email protected]">[email protected]</a>
<br/>Developer
<br/>TU-Berlin
<br/>Sekr. TIB 4/4-3
<br/>Gustav-Meyer-Allee 25
<br/>13355 Berlin
<br/>TIB Gebäude 17, Etage
<br/>Raum 472
</p>
</div>
</div>
</td>
<td>
<div class="contact contact-center no-hover">
<ul id="navlist" class="no-hover">
<li><a href="mailto:[email protected]" title="Email Colin!">
<img src="images/team/colin-combe.jpg" class="grayscale" />
</a></li>
</ul>
<div class="external-link">
<p>
<strong>Colin Combe</strong>
<br/><a href="mailto:[email protected]">[email protected]</a>
<br/>Developer
<br/>University of Edinburgh
<br/>Room 4.17
<br/>Michael Swann Building
<br/>King’s Buildings
<br/>Edinburgh
<br/>EH9 3JR
</p>
</div>
</div>
</td>
<td>
<div class="contact contact-right">
<ul id="navlist">
<li><a href="mailto:[email protected]" title="Email Juri!">
<img src="images/team/juri-rappsilber.jpg" class="grayscale" />
</a></li>
</ul>
<div class="external-link">
<p>
<strong>Prof Juri Rappsilber</strong>
<br/><a href="mailto:[email protected]">[email protected]</a>
<br/>General Inquiries
<br/>TU-Berlin
<br/>Sekr. TIB 4/4-3
<br/>Gustav-Meyer-Allee 25
<br/>13355 Berlin
<br/>TIB Gebäude 17, Etage
<br/>Raum 475
</p>
</div>
</div> <!-- CONTACT -->
</td>
<tr>
</table>
</div><!-- CONTACTGROUP -->
<br>
</div> <!-- CONTAINER -->
</section>
<section class="two contact-section2">
<div class="container">
<div class="external-link">
<h4>Support</h4>
<p>For support email <a href="mailto:[email protected]">[email protected]</a>. You may also use <a target="_blank" href="https://github.com/Rappsilber-Laboratory/xiSPEC/issues"> issue tracking at GitHub</a>.</p>
</div>
<br>
</div>
</section>
</div> <!-- MAIN -->
</body>
</html>