forked from uwsampl/uwsampl.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
talks.html
82 lines (74 loc) · 2.67 KB
/
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
---
layout: default
title: SAMPL Lunch Talks
---
<h1 id="links">Links</h1>
<p>Join the following channels for updates and notifications:</p>
<ul>
<li><a href="https://mailman.cs.washington.edu/mailman/listinfo/sampl"> SAMPL Mailing List (internal)</a></li>
<li><a href="https://uw-cse.slack.com/archives/C9DE9ES9Z">SAMPL Slack Channel (internal)</a></li>
<li><a href="https://calendar.google.com/calendar/embed?src=cs.washington.edu_ek1s98h0oj1b4b49m2t69f5peo%40group.calendar.google.com&ctz=America%2FLos_Angeles">SAMPL Calendar</a></li>
<li><a href="https://www.youtube.com/channel/UCYZ98EiUAI-KkBSyuml155Q">SAMPL Youtube Channel</a></li>
</ul>
<h1 id="schedule">Schedule</h1>
<ul>
<li>Time: Weekly on Thursday, 11:30am - 12:30pm PST </li>
<li>Instructions and schedules: <a href="https://docs.google.com/document/d/1iJV0CalYb2Ps6DJ8-S1dAUG8LhLpq6dIv_65OD3ulv4/edit?usp=sharing">Au 2022</a>.</li>
</ul>
<h2 id="upcoming">Upcoming Talks</h2>
{% for talk in site.data.talks %}
{% if talk.calendar %}
<div class="talk-entry">
<div class="talk-entry-date">{{talk.date}}</div>
<b>Location</b>: {{talk.location}}
</br>
<b>{{talk.title}}</b>
</br>
<b>Speaker</b>: <a href="{{talk.speaker[2]}}">{{talk.speaker[0]}}</a> ({{talk.speaker[1]}})
</br>
{% if talk.abstract %}
<details>
<summary><b>Abstract</b></summary>
{{talk.abstract}}
</details>
{% endif %}
{% if talk.bio %}
<details>
<summary><b>Speaker bio</b></summary>
{{talk.bio}}
</details>
{% endif %}
<b>Add to calendar</b>: {{talk.calendar}}
</div>
{% endif %}
{% endfor %}
<h2 id="past">Past Talks</h2>
{% for talk in site.data.talks %}
{% if talk.calendar == nil %}
<div class="talk-entry">
<div class="talk-entry-date">{{talk.date}}</div>
<b>{{talk.title}}</b>
</br>
<b>Speaker</b>: <a href="{{talk.speaker[2]}}">{{talk.speaker[0]}}</a> ({{talk.speaker[1]}})
</br>
{% if talk.abstract %}
<details>
<summary><b>Abstract</b></summary>
{{talk.abstract}}
</details>
{% endif %}
{% if talk.bio %}
<details>
<summary><b>Speaker bio</b></summary>
{{talk.bio}}
</details>
{% endif %}
{% if talk.recording %}
<b>Recording</b>: <a href="{{talk.recording[0]}}">{{talk.recording[1]}}</a> </br>
{% endif %}
{% if talk.note %}
<b>Note</b>: {{talk.note}} </br>
{% endif %}
</div>
{% endif %}
{% endfor %}