FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
2020.code4lib.org/_includes/speaker_box.html at main · code4lib/2020.code4lib.org · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
code4lib
/
2020.code4lib.org
Public
Notifications
You must be signed in to change notification settings
Fork
3
Star
7
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
2020.code4lib.org
/
_includes
/
speaker_box.html
Copy path
More file actions
More file actions
Latest commit
History
History
History
54 lines (52 loc) · 3.08 KB
Breadcrumbs
2020.code4lib.org
/
_includes
/
speaker_box.html
Copy path
File metadata and controls
54 lines (52 loc) · 3.08 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{% assign speaker = include.speaker %}
<
div
class
="
speaker-box text-center
"
id
="
{{ speaker.id }}-id
"
data-speaker-info
="
#{{ speaker.id }}-info
"
>
<
div
class
="
speaker-box-inner
"
>
<
a
href
="
#
"
class
="
speaker-info-toggle
"
data-target
="
#{{ speaker.id }}
"
aria-expanded
="
false
"
aria-controls
="
{{ speaker.id }}
"
>
<
img
class
="
clip-circle-lg
"
src
="
{{ speaker.image_src | relative_url }}
"
alt
="
{{ speaker.name }}
"
>
</
a
>
<
h2
class
="
h4 speaker-name
"
>
<
a
href
="
#
"
class
="
speaker-info-toggle
"
data-target
="
#{{ speaker.id }}
"
aria-expanded
="
false
"
aria-controls
="
{{ speaker.id }}
"
>
{{ speaker.name }}
</
a
>
</
h2
>
<
div
class
="
speaker-mini
"
>
<
p
class
="
speaker-title
"
>
{{ speaker.work_title }}
</
p
>
<
p
class
="
speaker-inst
"
>
{{ speaker.institution }}
</
p
>
</
div
>
<
div
class
="
arrow-down
"
>
</
div
>
</
div
>
</
div
>
<
div
class
="
speaker-info
"
id
="
{{ speaker.id }}-info
"
>
<
div
class
="
speaker-info-inner
"
>
{% if speaker.twitter_handle.size
>
0 %}
<
p
class
="
speaker-bio
"
>
<
span
class
="
icon icon--twitter
"
>
<
a
href
="
https://twitter.com/{{ speaker.twitter_handle }}
"
>
<
svg
viewBox
="
0 0 18 18
"
>
<
path
fill
="
#006272
"
d
="
M15.969,3.058c-0.586,0.26-1.217,0.436-1.878,0.515c0.675-0.405,1.194-1.045,1.438-1.809
c-0.632,0.375-1.332,0.647-2.076,0.793c-0.596-0.636-1.446-1.033-2.387-1.033c-1.806,0-3.27,1.464-3.27,3.27 c0,0.256,0.029,0.506,0.085,0.745C5.163,5.404,2.753,4.102,1.14,2.124C0.859,2.607,0.698,3.168,0.698,3.767 c0,1.134,0.577,2.135,1.455,2.722C1.616,6.472,1.112,6.325,0.671,6.08c0,0.014,0,0.027,0,0.041c0,1.584,1.127,2.906,2.623,3.206 C3.02,9.402,2.731,9.442,2.433,9.442c-0.211,0-0.416-0.021-0.615-0.059c0.416,1.299,1.624,2.245,3.055,2.271 c-1.119,0.877-2.529,1.4-4.061,1.4c-0.264,0-0.524-0.015-0.78-0.046c1.447,0.928,3.166,1.469,5.013,1.469 c6.015,0,9.304-4.983,9.304-9.304c0-0.142-0.003-0.283-0.009-0.423C14.976,4.29,15.531,3.714,15.969,3.058z
"
>
</
path
>
</
svg
>
<
span
class
="
username
"
>
{{ speaker.twitter_handle }}
</
span
>
</
a
>
</
span
>
</
p
>
{% endif %}
<
p
class
="
speaker-bio
"
>
{{ speaker.bio }}
</
p
>
{% unless speaker.keynote %}
{% assign talks = site.posts | where:'type','talk' %}
{% for talk in talks %}
{% for speaker_id in talk.speakers %}
{% if speaker_id == speaker.id %}
<
p
class
="
speaker-session
"
>
Talk:
<
a
href
="
{{ talk.url }}
"
>
{{ talk.title }}
</
a
>
</
p
>
{% endif %}
{% endfor %}
{% endfor %}
{% assign workshops = site.posts | where:'type','workshop' %}
{% for shop in workshops %}
{% for speaker_id in shop.speakers %}
{% if speaker_id == speaker.id %}
<
p
class
="
speaker-session
"
>
Workshop:
<
a
href
="
{{ shop.url }}
"
>
{{ shop.title }}
</
a
>
</
p
>
{% endif %}
{% endfor %}
{% endfor %}
{% endunless %}
</
div
>
</
div
>
Back
|
FazBrowse Home
|
New Git URL