forked from code4lib/2016.code4lib.org
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspeakers.html
More file actions
94 lines (84 loc) · 4.97 KB
/
speakers.html
File metadata and controls
94 lines (84 loc) · 4.97 KB
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
---
layout: default
title: Speakers
---
<div class="container">
<h1>2016 Speakers</h1>
<div class="col-md-12">
<p>We are still in the process of selecting this year's speakers, which means that you could be on the list!</p>
<p>If you have something to share (come on, we know you do), submit a talk or a workshop. See the <a href="/schedule.html">schedule page</a> for
details, deadlines, and submission links.</p>
</div>
<hr/>
<h2>Past Keynote Speakers</h2>
<div class="col-md-12">
<div class="table-responsive table-condensed">
<table class="table">
<thead>
<tr>
<th></th>
<th>Name</th>
<th>Job Title</th>
<th>Institution</th>
<!--<th>Presentation</th>-->
</tr>
</thead>
{% for person in site.data.speakers reversed %}
{% assign speaker = person[1] %}
<tr>
<td><img src="{{ speaker.imgpath }}" alt="{{ speaker.name }}" class="img-responsive" style="max-width:200px; height:auto;" id="{{ speaker.name | slugify }}-img"></td>
<td>
<ul class="list-unstyled">
<li><a href="#" data-toggle="modal" data-target="#{{ speaker.name | slugify }}"><span class="glyphicon glyphicon-question-sign"></span> {{ speaker.name }}</a></li>
{% if speaker.twitter %}
<li><a href="https://twitter.com/{{ speaker.twitter }}" target="_blank">@{{ speaker.twitter }}</a></li>
{% endif %}
{% if speaker.email %}
<li><a href="mailto:{{ speaker.email }}"><span class="glyphicon glyphicon-envelope"></span> {{ speaker.email }}</a></li>
{% endif %}
</ul>
<!-- Modal -->
<div class="modal fade" id="{{ speaker.name | slugify }}" tabindex="-1" role="dialog" aria-labelledby="{{ speaker.name | slugify }}-label">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="{{ speaker.name | slugify }}-label">{{ speaker.name }}</h4>
</div>
<div class="modal-body">
{{ speaker.bio }}
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</td>
<td>{{ speaker.title }}</td>
<td>{{ speaker.inst }}</td>
<!--<td><a href="#" data-toggle="modal" data-target="#JTPres">Speaker's Session<br></a>
<div class="modal" id="JTPres" tabindex="-1" role="dialog" aria-labelledby="JTPres" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modalheader">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
</div>
<div class="modal-body">
<h3 class="modal-title">Speaker's Session</h3>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Mauris a urna vel purus tempus suscipit. Maecenas sit amet luctus enim. Donec maximus libero elit, at dapibus ligula ornare et. Pellentesque nisl sapien, gravida nec vulputate a, accumsan a dui. Suspendisse quis massa vitae arcu tincidunt tristique eu in nunc. Nullam viverra nulla lorem, non tempus lectus finibus quis. Integer faucibus volutpat lectus, ac rutrum sem imperdiet ac. Pellentesque id erat ac tellus condimentum hendrerit a sit amet ex. Duis fringilla enim consequat nunc consectetur suscipit id ut mi. Maecenas finibus placerat lectus ac ullamcorper. Aenean quis fringilla dui. Sed rutrum, dolor at imperdiet vulputate, ex nulla ornare lectus, ac tempus lacus felis a libero. Fusce id consequat odio.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</td>-->
</tr>
{% endfor %}
</table>
</div><!-- responsive table-->
</div><!-- col-md-12 -->
</div> <!-- container -->