-
Notifications
You must be signed in to change notification settings - Fork 0
/
adv-committee.php
134 lines (125 loc) · 3.75 KB
/
adv-committee.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
<!doctype html>
<html lang="en">
<head>
<title>Advisory Committee | SIN 2017</title>
<?php require 'php_includes/imports.php'; ?>
</head>
<body class="profile-page">
<!-- Navbar -->
<?php require 'php_includes/navbar.php'; ?>
<!-- End Navbar -->
<div class="wrapper">
<div class="header header-filter" style="background-image:url(assets/img/background/mujBg.jpg);"></div>
<div class="main main-raised">
<section class="section speaker text-center">
<div class="container">
<h2 class="title">Advisory Committee</h2>
<div class="team">
<div class="row">
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Alexander Shelupanov, Tomsk State University of Control Systems and Radioelectronics (TUSUR)
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Gene Spafford, Purdue University, USA
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Bart Preneel, Katholieke Universiteit Leuven, Belgium
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Bülent Örencik, Beykent University, Turkey
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Cetin Kaya Koc, University of California Santa Barbara, USA
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Edward Dawson, Queensland University of Technology, Australia
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Elisa Bertino, Purdue University, USA
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
N. Balakrishnan, IISc Bangalore, India
</p>
</blockquote>
</h4>
</div>
<div class="col-md-12">
<h4 style="text-align: justify;">
<blockquote>
<p>
Willy Susilo, University of Wollongong, Australia
</p>
</blockquote>
</h4>
</div>
</div>
</div>
</div>
</section>
<!-- Social Links -->
<?php require 'php_includes/social.php'; ?>
</div>
</div>
<!-- Footer -->
<?php require 'php_includes/footer.php'; ?>
</body>
<!-- Core JS Files -->
<script src="assets/js/jquery.min.js" type="text/javascript"></script>
<script src="assets/js/bootstrap.min.js" type="text/javascript"></script>
<script src="assets/js/material.min.js"></script>
<!-- Plugin for the Sliders, full documentation -->
<script src="assets/js/nouislider.min.js" type="text/javascript"></script>
<!-- Control Center for activating the ripples, parallax effects, scripts from the example pages etc -->
<script src="assets/js/material-kit.js" type="text/javascript"></script>
<script type="text/javascript">
$().ready(function(){
// the body of this function is in assets/material-kit.js
$(window).on('scroll', materialKit.checkScrollForTransparentNavbar);
});
</script>
</html>