-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.php
executable file
·170 lines (157 loc) · 4.83 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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<!DOCTYPE html>
<html lang="en">
<head>
<?php // The header includes the head tag and start of body
require "includes/head.php";
?>
<meta property="og:title" content="<?php echo $META['shortName'];?> contact information"/>
<meta name="twitter:title" content="<?php echo $META['shortName'];?> contact information"/>
<title>
Contact for <?php echo $META['shortName'];?>
</title>
</head>
<body>
<?php require "includes/nav.php"; ?>
<main class="container p-4">
<h2 class="indPageTitle">
Contact
</h2>
<!-- NOTE: below is standard placeholder text for when the page is under construction. please delete this entire <div class="row"> and all elements contained within it when ready to add other content -->
<!-- <div class="row">
<div class="col-12">
<p>
This information is not yet available. Thank you for your patience.
</p>
</div>
</div> -->
<h3 class="pageSubtitle text-center mt-4">
General Co-Chairs
</h3>
<div class="row mt-3 mt-md-4">
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Lejla Batina
</h4>
<p class="text-center">
Radboud University<br>
The Netherlands
</p>
</aside>
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Stjepan Picek
</h4>
<p class="text-center">
Delft University of Technology<br>
The Netherlands
</p>
</aside>
</div>
<div class="row">
<div class="col-12 text-center mb-5">
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> [email protected]
</a>
</div>
</div>
<h3 class="pageSubtitle text-center mt-4">
Program Co-Chairs
</h3>
<div class="row mt-3 mt-md-4">
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Anne Canteaut
</h4>
<p class="text-center">
Inria Paris<br>
France
</p>
</aside>
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Francois-Xavier Standaert
</h4>
<p class="text-center">
Université catholique de Louvain<br>
Belgium
</p>
</aside>
</div>
<div class="row">
<div class="col-12 text-center mb-5">
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> [email protected]
</a>
</div>
</div>
<!-- <h3 class="pageSubtitle text-center mt-4">
Virtual Conference Administrators
</h3>
<div class="row mt-3 mt-md-4">
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Kevin McCurley
</h4>
</aside>
<aside class="col-12 col-sm-6 text-center mb-2">
<h4 class="subSubtitle">
Kay McKelly
</h4>
<p class="text-center">
IACR
</p>
</aside>
</div>
<div class="row">
<div class="col-12 text-center mb-5">
<a href="mailto:[email protected]">
<img src="images/icons/email.svg" class="icon" /> <img src="images/contacts/vc.jpg" />
</a>
</div>
</div> -->
<!-- <h3 class="pageSubtitle text-center mt-4">
Local Organizing Committee
</h3>
<div class="row mt-3 mt-md-4">
<aside class="col-12 col-sm-3 text-center mb-2">
<h4 class="subSubtitle">
Shanley Fijn
</h4>
<p class="text-center">
Radboud University<br>
The Netherlands
</p>
</aside>
<aside class="col-12 col-sm-3 text-center mb-2">
<h4 class="subSubtitle">
Marin Golub
</h4>
<p class="text-center">
University of Zagreb<br>
Croatia
</p>
</aside>
<aside class="col-12 col-sm-3 text-center mb-2">
<h4 class="subSubtitle">
Domagoj Jakobović
</h4>
<p class="text-center">
University of Zagreb<br>
Croatia
</p>
</aside>
<aside class="col-12 col-sm-3 text-center mb-2">
<h4 class="subSubtitle">
Simona Samardjiska
</h4>
<p class="text-center">
Radboud University<br>
The Netherlands
</p>
</aside>
</div>
-->
</main>
<?php include "includes/footer.php"; ?>
</body>
</html>