|
7 | 7 |
|
8 | 8 | <main> |
9 | 9 | <article id="view-meetup"> |
10 | | - <section> |
11 | | - <h2>Host</h2> |
12 | | - <a href="{{ site.data.companies[page.host].url }}">{{ site.data.companies[page.host].name }}</a> |
13 | | - </section> |
| 10 | + <section> |
| 11 | + <h2>Host</h2> |
| 12 | + <a href="{{ site.data.companies[page.host].url }}">{{ site.data.companies[page.host].name }}</a> |
| 13 | + </section> |
14 | 14 |
|
15 | | - <section> |
16 | | - <h2>Speakers</h2> |
17 | | - <ul> |
18 | | - {% for talk in page.talks %} |
19 | | - {% for speaker in talk.speakers %} |
20 | | - <li> |
21 | | - {% if site.data.people[speaker].github %} |
22 | | - <a href="https://github.com/{{ site.data.people[speaker].github }}"> |
23 | | - <img src="https://github.com/{{ site.data.people[speaker].github }}.png?size=30" alt="{{ site.data.people[speaker].name }}" style="border-radius: 50%; width: 30px"/>{{ site.data.people[speaker].name }} |
24 | | - </a> |
25 | | - {% else %} |
26 | | - {{ site.data.people[speaker].name }} |
27 | | - {% endif %} |
28 | | - </li> |
29 | | - {% endfor %} |
30 | | - {% endfor %} |
31 | | - </ul> |
32 | | - </section> |
| 15 | + <section> |
| 16 | + <h2>Speakers</h2> |
| 17 | + <ul> |
| 18 | + {% for talk in page.talks %} |
| 19 | + {% for speaker in talk.speakers %} |
| 20 | + <li> |
| 21 | + {% if site.data.people[speaker].github %} |
| 22 | + <a href="https://github.com/{{ site.data.people[speaker].github }}"> |
| 23 | + <img src="https://github.com/{{ site.data.people[speaker].github }}.png?size=30" alt="{{ site.data.people[speaker].name }}" style="border-radius: 50%; width: 30px"/>{{ site.data.people[speaker].name }} |
| 24 | + </a> |
| 25 | + {% else %} |
| 26 | + {{ site.data.people[speaker].name }} |
| 27 | + {% endif %} |
| 28 | + </li> |
| 29 | + {% endfor %} |
| 30 | + {% endfor %} |
| 31 | + </ul> |
| 32 | + </section> |
33 | 33 |
|
34 | | - <section> |
35 | | - <h2>Charlas</h2> |
| 34 | + <section> |
| 35 | + <h2>Charlas</h2> |
36 | 36 |
|
37 | | - {% for talk in page.talks %} |
38 | | - <div class="talk"> |
39 | | - {% assign speakers = "" | split: ',' %} |
| 37 | + {% for talk in page.talks %} |
| 38 | + <div class="talk"> |
| 39 | + {% assign speakers = "" | split: ',' %} |
40 | 40 |
|
41 | | - {% for speaker in talk.speakers %} |
42 | | - {% assign speakers = speakers | push: site.data.people[speaker].name %} |
43 | | - {% endfor %} |
| 41 | + {% for speaker in talk.speakers %} |
| 42 | + {% assign speakers = speakers | push: site.data.people[speaker].name %} |
| 43 | + {% endfor %} |
44 | 44 |
|
45 | | - <h3 id="{{ talk.title | slugify }}"> |
46 | | - <a href="#{{ talk.title | slugify }}"> |
47 | | - <span>{{ talk.title }}</span> |
48 | | - </a> |
49 | | - <p>{{ speakers | join: ", " }}</p> |
50 | | - </h3> |
| 45 | + <h3 id="{{ talk.title | slugify }}"> |
| 46 | + <a href="#{{ talk.title | slugify }}"> |
| 47 | + <span class="talk-title">{{ talk.title }}</span> |
| 48 | + </a> |
| 49 | + <p>{{ speakers | join: ", " }}</p> |
| 50 | + </h3> |
51 | 51 |
|
52 | | - <p>{{ talk.description }}<p> |
| 52 | + <p>{{ talk.description }}<p> |
53 | 53 |
|
54 | | - {% if talk.recording %} |
55 | | - <div class="keep-aspect-ratio"> |
56 | | - <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> |
57 | | - </iframe> |
58 | | - </div> |
59 | | - {% endif %} |
| 54 | + {% if talk.recording %} |
| 55 | + <div class="keep-aspect-ratio"> |
| 56 | + <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> |
| 57 | + </iframe> |
| 58 | + </div> |
| 59 | + {% endif %} |
60 | 60 |
|
61 | | - {% if talk.slides %} |
62 | | - <div class="keep-aspect-ratio"> |
63 | | - <iframe src="{{ talk.slides }}" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"> |
64 | | - </iframe> |
65 | | - </div> |
66 | | - {% endif %} |
| 61 | + {% if talk.slides %} |
| 62 | + <div class="keep-aspect-ratio"> |
| 63 | + <iframe src="{{ talk.slides }}" frameborder="0" allowfullscreen="true" mozallowfullscreen="true" webkitallowfullscreen="true"> |
| 64 | + </iframe> |
| 65 | + </div> |
| 66 | + {% endif %} |
67 | 67 |
|
68 | | - </div> |
69 | | - {% endfor %} |
70 | | - </section> |
| 68 | + </div> |
| 69 | + {% endfor %} |
| 70 | + </section> |
71 | 71 | <section> {{ content }} </section> |
72 | 72 | </article> |
73 | 73 | </main> |
|
0 commit comments