-
Notifications
You must be signed in to change notification settings - Fork 6
/
conference_talks.html
63 lines (61 loc) · 2.06 KB
/
conference_talks.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
---
layout: default
title: Conference Talks & Podcasts
permalink: /conference-talks/
---
<div class="text-base md:text-lg font-sans">
<h3 class="text-2xl md:text-3xl font-black text-center pt-10">
Conference Talks & Podcasts
</h3>
<section class="bg-white py-5 md:py-10 px-16 md:px-32 lg:px-56">
<h1 class="font-bold pt-16 py-6 text-xl">CONFERENCE TALKS</h1>
{% for entity in site.data.conference_talks.conferences %}
<p class="font-medium text-slate-500 py-8 text-lg">{{ entity.year }}</p>
<ul>
{% for conference in entity.data %}
<li class="pb-3">
<p>{{ conference.name }}</p>
{% for talk in conference.talks %}
<p class="text-slate-600 font-light">
{{ talk.title }} {% for item in
site.data.conference_talks.miscellaneous %} {% if talk[item] %}|
<a
href="{{ talk[item] }}"
class="hover:underline hover:decoration-4 hover:decoration-purple-400 text-slate-400"
>{{ item }}</a
>{% endif %} {% endfor %}
</p>
{% endfor %}
</li>
{% endfor %}
</ul>
{% endfor %}
<h2 class="font-bold pt-16 py-6 text-xl">PODCASTS</h2>
<ul>
{% for entity in site.data.conference_talks.podcasts %}
<li class="pb-3">
<p>{{ entity.name }}</p>
{% for podcast in entity.data %}
<p class="text-slate-600 font-light">
<a
href="{{ podcast.link }}"
class="hover:underline hover:decoration-4 hover:decoration-purple-400"
>{{ podcast.title }}</a
>
</p>
{% endfor %}
</li>
{% endfor %}
</ul>
</section>
</div>
<script>
$(".main").removeClass("bg-gradient-purple-darkest-to-light");
$(".navbar-item").removeClass("text-white");
$("#flyte-logo-on-light-bg").css("display", "block");
$("#flyte-svg-mobile").css("display", "none");
$("#flyte-svg-main").css("display", "none");
$("#lfaidata-main").css("display", "none");
$("#lfaidata-light-bg").css("display", "block");
$("#nav-svg").css("fill", "#000000");
</script>