-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
266 lines (232 loc) · 6.89 KB
/
index.html
File metadata and controls
266 lines (232 loc) · 6.89 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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Temporal Information Retrieval and Extraction: From Foundations to RAG | SIGIR 2026</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, Helvetica, sans-serif;
color: #ffffff;
background:
radial-gradient(circle at top left, rgba(255, 120, 80, 0.35), transparent 30%),
radial-gradient(circle at top right, rgba(168, 85, 247, 0.35), transparent 30%),
linear-gradient(135deg, #0f172a, #1e1b4b, #312e81);
min-height: 100vh;
padding: 40px 20px;
}
.container {
max-width: 1100px;
margin: 0 auto;
}
.hero {
text-align: center;
padding: 80px 30px 60px;
}
.badge {
display: inline-block;
background: rgba(255, 255, 255, 0.12);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 10px 18px;
border-radius: 999px;
font-size: 0.95rem;
margin-bottom: 25px;
backdrop-filter: blur(8px);
}
.hero h1 {
font-size: 3rem;
line-height: 1.2;
max-width: 900px;
margin: 0 auto 20px;
}
.hero p {
max-width: 750px;
margin: 0 auto;
font-size: 1.1rem;
line-height: 1.7;
color: rgba(255, 255, 255, 0.85);
}
.info-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 20px;
margin: 40px 0 50px;
}
.card {
background: rgba(255, 255, 255, 0.1);
border: 1px solid rgba(255, 255, 255, 0.18);
border-radius: 20px;
padding: 24px;
backdrop-filter: blur(14px);
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
.card h2 {
font-size: 1.2rem;
margin-bottom: 12px;
color: #fbbf24;
}
.card p,
.card span,
.card a {
color: rgba(255, 255, 255, 0.9);
line-height: 1.6;
}
.card a {
text-decoration: none;
font-weight: 600;
}
.card a:hover {
text-decoration: underline;
}
.presenters {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 18px;
margin-top: 10px;
}
.presenter {
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 16px;
padding: 18px;
text-align: center;
transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.presenter:hover {
transform: translateY(-6px) scale(1.02);
box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}
.presenter img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 12px;
border: 3px solid rgba(255,255,255,0.3);
transition: transform 0.3s ease;
}
.presenter:hover img {
transform: scale(1.08);
}
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.12);
border-radius: 16px;
padding: 18px;
text-align: center;
}
.presenter img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 12px;
border: 3px solid rgba(255,255,255,0.3);
}
.presenter strong {
display: block;
font-size: 1.05rem;
margin-bottom: 6px;
}
.presenter .role {
display: block;
color: #f9a8d4;
font-size: 0.95rem;
margin-bottom: 4px;
}
.coming-soon {
text-align: center;
margin: 50px 0 30px;
padding: 30px;
background: rgba(255, 255, 255, 0.08);
border: 1px solid rgba(255, 255, 255, 0.15);
border-radius: 24px;
backdrop-filter: blur(12px);
}
.coming-soon h2 {
font-size: 1.8rem;
margin-bottom: 12px;
color: #f9a8d4;
}
.coming-soon p {
font-size: 1.05rem;
color: rgba(255, 255, 255, 0.85);
}
footer {
text-align: center;
margin-top: 40px;
color: rgba(255, 255, 255, 0.7);
font-size: 0.95rem;
}
</style>
</head>
<body>
<div class="container">
<section class="hero">
<div class="badge">SIGIR 2026 Tutorial</div>
<h1>Temporal Information Retrieval and Extraction: From Foundations to RAG</h1>
<p>
Exploring the foundations, methods, and emerging directions of temporal information retrieval
and extraction, from classical approaches to modern Retrieval-Augmented Generation systems.
</p>
</section>
<section class="info-grid">
<div class="card">
<h2>Conference</h2>
<p><strong><a href="https://sigir-2026.org/" target="_blank" rel="noopener noreferrer">SIGIR 2026</a></strong></p>
<p>Melbourne, Australia</p>
<p>July 2026</p>
</div>
<div class="card">
<h2>About the Tutorial</h2>
<p>
This tutorial will cover key concepts in temporal information retrieval and extraction,
including foundational methods, modern neural approaches, and the role of temporal reasoning in RAG systems.
</p>
</div>
</section>
<section class="card">
<h2>Presenters</h2>
<div class="presenters">
<div class="presenter">
<img src="pictures/bhawna-piryani.png" alt="Bhawna Piryani">
<strong><a href="https://bhawnapiryani.github.io/" target="_blank">Bhawna Piryani</a></strong>
<span class="role">Ph.D. Candidate</span>
<span>University of Innsbruck, Austria</span>
</div>
<div class="presenter">
<img src="pictures/avishek-anand.webp" alt="Avishek Anand">
<strong><a href="https://www.avishekanand.com/" target="_blank">Avishek Anand</a></strong>
<span class="role">Associate Professor</span>
<span>Delft University of Technology, Netherlands</span>
</div>
<div class="presenter">
<img src="pictures/omar-alonso.jpg" alt="Omar Alonso">
<strong><a href="https://www.linkedin.com/in/omar-alonso-8a5235/" target="_blank">Omar Alonso</a></strong>
<span class="role">Senior Manager in Applied Science</span>
<span>Amazon, USA</span>
</div>
<div class="presenter">
<img src="pictures/adam-jatowt.jpg" alt="Adam Jatowt">
<strong><a href="https://ds-informatik.uibk.ac.at/doku.php?id=homepage" target="_blank">Adam Jatowt</a></strong>
<span class="role">Professor</span>
<span>University of Innsbruck, Austria</span>
</div>
</div>
</section>
<section class="coming-soon">
<h2>More Details Coming Soon</h2>
<p>
The full tutorial schedule, reading list, materials, and additional resources will be added soon.
</p>
</section>
<footer>
<p>© 2026 SIGIR Tutorial Website</p>
</footer>
</div>
</body>
</html>