-
Notifications
You must be signed in to change notification settings - Fork 9
/
speakers.html
213 lines (174 loc) · 7.74 KB
/
speakers.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
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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>MVPConf : Home</title>
<!-- Favicon -->
<link rel="shortcut icon" type="image/icon" href="assets/images/favicon.ico"/>
<!-- Font Awesome -->
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
<!-- <link href="assets/fonts/css/fontawesome.min.css" rel="stylesheet" /> -->
<!-- Bootstrap -->
<link href="assets/css/bootstrap.min.css" rel="stylesheet">
<link href="assets/css/footer.css" rel="stylesheet">
<!-- Slick slider -->
<link href="assets/css/slick.css" rel="stylesheet">
<!-- Theme color -->
<link id="switcher" href="assets/css/theme-color/orange-theme.css" rel="stylesheet">
<!-- Main Style -->
<link href="style.css" rel="stylesheet">
<link href="assets/css/gridder.min.css" rel="stylesheet">
<link href="assets/css/gridder-custom.css" rel="stylesheet">
<!-- Fonts -->
<!-- Open Sans for body font -->
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,400i,600,700,800" rel="stylesheet">
<!-- Montserrat for title -->
<link href="https://fonts.googleapis.com/css?family=Montserrat" rel="stylesheet">
<!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Start Header -->
<header id="mu-hero-inner" class="" role="banner">
<!-- Start menu -->
<nav class="navbar navbar-static-top navbar-default mu-navbar mu-nav-show">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Logo -->
<a class="navbar-brand" href="index.html">MVPConference 2018</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav mu-menu navbar-right">
<li><a href="index.html#mu-hero">Home</a></li>
<li><a href="index.html#mu-about">About Us</a></li>
<li><a href="index.html#mu-schedule">Schedule</a></li>
<li><a href="index.html#mu-speakers">Speakers</a></li>
<li><a href="index.html#mu-venue">Venue</a></li>
<li><a href="index.html#mu-pricing">Price</a></li>
<li><a href="index.html#mu-register">Register</a></li>
<li><a href="index.html#mu-sponsors">Sponsors</a></li>
<li><a href="index.html#mu-contact">Contact</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<!-- End menu -->
</header>
<!-- End Header -->
<!-- Start main content -->
<main role="main">
<section class="bg-light" id="team">
<div class="container">
<div class="row">
<div class="col-lg-12 text-center">
<h2 class="section-heading text-uppercase">Our Speakers</h2>
<!-- <h3 class="section-subheading text-muted">Our speakers are very familiar faces to you, you must have seen/heard them talking on the latest and greatest on the new innovations on Dev/IT in the local community meetups or in the premier conferences. We have assembled some of the amazing expert speakers from the elite MVPs and Microsoft RD community.</h3> -->
</div>
</div>
<div class="row" >
<ul id="lstAllSpeakers" class="gridder">
<script id="allSpeakersTemplate" type="text/x-handlebars-template">
{{#each speakers}}
<li class="gridder-list speakerlist-equal" data-griddercontent="#content{{counter @index}}">
<div >
<div class="text-center ">
<img src="{{imageURL}}" class="mx-auto img-circle" style="height:244px;width:244px" alt="speaker img">
<h4 >{{name}}</h4>
<p class="text-muted">{{title}}</p>
<ul class="list-inline social-buttons">
<li class="list-inline-item">
<a href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li class="list-inline-item">
<a href="#">
<i class="fa fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</li>
{{/each}}
</script>
</ul>
</div>
<div class="row" id="speakerDetailContent">
<script id="speakersDetailTemplate" type="text/x-handlebars-template">
{{#each speakers}}
<div id="content{{counter @index}}" class="col-md-11 gridder-content">
<div class="gridder-item text-right">
<img src="{{imageURL}}" class="mx-auto " style="height:244px;width:244px" alt="speaker img">
<h4 >{{name}}</h4>
<p class="text-muted">{{title}}</p>
</div>
</div>
{{/each}}
</script>
</div>
</div>
</section>
</main>
<!-- End main content -->
<!--header-->
<!-- Start footer -->
<footer id="mu-footer" role="contentinfo">
<div class="container">
<div class="mu-footer-area">
<div class="mu-footer-top">
<div class="mu-social-media">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-linkedin"></i></a>
<a href="#"><i class="fa fa-youtube"></i></a>
</div>
</div>
<div class="mu-footer-bottom">
<p class="mu-copy-right">© MVPConf Copyright. All right reserved.</p>
</div>
</div>
</div>
</footer>
<!-- End footer -->
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<!-- Bootstrap -->
<script src="assets/js/bootstrap.min.js"></script>
<!-- Slick slider -->
<script type="text/javascript" src="assets/js/slick.min.js"></script>
<!-- Event Counter -->
<script type="text/javascript" src="assets/js/jquery.countdown.min.js"></script>
<script type="text/javascript" src="assets/js/jquery.gridder.min.js"></script>
<!-- Ajax contact form -->
<script type="text/javascript" src="assets/js/app.js"></script>
<script type="text/javascript" src="assets/js/handlebars.min-latest.js"></script>
<script type="text/javascript" src="data/speakers.js"></script>
<script type="text/javascript" src="assets/js/speakers.js"></script>
<script type="text/javascript" src="assets/js/services.js"></script>
<!-- Custom js -->
<script type='text/javascript' src='//platform-api.sharethis.com/js/sharethis.js#property=59d270f520f64600117ce96a&product=unknown' async='async'></script>
</body>
</html>