Skip to content

Commit 3341f2f

Browse files
committed
Render slides too
1 parent 397bf6c commit 3341f2f

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

_layouts/meetup.html

Lines changed: 18 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,34 @@ <h2>Speakers</h2>
3333

3434
<section>
3535
<h2>Charlas</h2>
36+
3637
{% for talk in page.talks %}
3738
<div class="talk">
3839
{% assign speakers = "" | split: ',' %}
40+
3941
{% for speaker in talk.speakers %}
4042
{% assign speakers = speakers | push: site.data.people[speaker].name %}
4143
{% endfor %}
42-
<h3><span>{{ talk.title }}</span> - {{ speakers | join: ", " }}</h3>
44+
45+
<h3>
46+
<span>{{ talk.title }}</span>
47+
<p>{{ speakers | join: ", " }}</p>
48+
</h3>
49+
4350
<p>{{ talk.description }}<p>
4451

45-
{% if talk.recording %}
4652
<div class="keep-aspect-ratio">
47-
<iframe src="{{ talk.recording }}" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
48-
{% endif %}
4953

50-
{% if talk.slides %}
51-
<iframe src="{{ talk.slides }}" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"></iframe></br>
52-
{% endif %}
54+
{% if talk.recording %}
55+
<iframe src="{{ talk.recording }}" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen>
56+
</iframe>
57+
{% endif %}
58+
59+
{% if talk.slides %}
60+
<iframe src="{{ talk.slides }}" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true">
61+
</iframe>
62+
{% endif %}
63+
5364
</div>
5465
</div>
5566
{% endfor %}

0 commit comments

Comments
 (0)