-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathseminars.html
More file actions
110 lines (100 loc) · 4.15 KB
/
Copy pathseminars.html
File metadata and controls
110 lines (100 loc) · 4.15 KB
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
---
layout: base
title: "Seminars"
---
{% assign sorted_seminars = site.data.seminars %}
<div class="seminars-page">
<header class="seminars-hero">
<p class="seminars-eyebrow">Seminar Series</p>
<h1>Seminars</h1>
<p class="seminars-intro">
<p>
Our seminar series brings together researchers working on graphs, machine learning, network science, and related areas.
It aims to foster interactions across complementary research directions, from geometry and mathematical modeling to data-driven and statistical approaches, encouraging the emergence of research collaborations.
</p>
<p>
Browse past and upcoming talks, discover the speakers, and access slides and videos.
</p>
<p>
Watch the full playlist:
<a href="https://youtube.com/playlist?list=PLGMXrbDNfqTxlTyk44tQCQEqxqgcIGXtV&si=5f3d52ywgmnlinI0">
NGML Seminar Series Playlist
</a>
</p>
<p>
Interested in attending the live seminars? Please contact
<a href="mailto:antonio.longa@uit.no">antonio.longa@uit.no</a>
</p>
</header>
{% if sorted_seminars and sorted_seminars.size > 0 %}
<section class="seminars-list" aria-label="Seminar archive">
{% for seminar in sorted_seminars %}
<article class="seminar-card">
<div class="seminar-card__header">
{% assign seminar_done = seminar.done | default: false | append: "" | downcase %}
<div class="seminar-card__meta-row">
<p class="seminar-card__date">
{{ seminar.date | date: "%B %-d, %Y" }}
{% if seminar.time %} · {{ seminar.time }}{% endif %}
</p>
{% if seminar_done == "true" %}
<span class="seminar-status seminar-status--done">Completed</span>
{% else %}
<span class="seminar-status seminar-status--upcoming">Upcoming</span>
{% endif %}
</div>
<h2>{{ seminar.title }}</h2>
</div>
<div class="seminar-card__content">
<div class="seminar-meta" aria-label="Seminar details">
<p>
<strong>Speaker:</strong>
{% if seminar.speaker_page %}
<a href="{{ seminar.speaker_page }}" target="_blank" rel="noopener noreferrer">{{ seminar.speaker }}</a>
{% else %}
{{ seminar.speaker }}
{% endif %}
</p>
{% if seminar.affiliation %}
<p><strong>Affiliation:</strong> {{ seminar.affiliation }}</p>
{% endif %}
{% if seminar.location %}
<p><strong>Location:</strong> {{ seminar.location }}</p>
{% endif %}
{% if seminar.host %}
<p><strong>Host:</strong> {{ seminar.host }}</p>
{% endif %}
</div>
<p class="seminar-description">{{ seminar.description }}</p>
<div class="seminar-links">
{% if seminar.slides %}
<a href="{{ seminar.slides }}" class="btn" target="_blank" rel="noopener noreferrer">
<i class="fas fa-file-powerpoint" aria-hidden="true"></i> Slides
</a>
{% endif %}
{% if seminar.recording %}
<a href="{{ seminar.recording }}" class="btn" target="_blank" rel="noopener noreferrer">
<i class="fas fa-video" aria-hidden="true"></i> Recording
</a>
{% endif %}
</div>
</div>
{% if seminar.photo %}
<figure class="seminar-photo">
<img
src="{{ seminar.photo | relative_url }}"
alt="{% if seminar.photo_alt %}{{ seminar.photo_alt }}{% else %}Photo from the seminar {{ seminar.title }}{% endif %}">
</figure>
{% endif %}
</article>
{% endfor %}
</section>
{% else %}
<section class="seminars-empty">
<h2>Seminars will appear here soon</h2>
<p>
Add entries to <code>_data/seminars.yml</code> to publish new seminars, slides, and photos on this page.
</p>
</section>
{% endif %}
</div>