Skip to content

Commit d46531c

Browse files
committed
Added Workshops section with IBRL
1 parent b05cae0 commit d46531c

File tree

3 files changed

+33
-0
lines changed

3 files changed

+33
-0
lines changed

_config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ navbar:
3030
url: /tutorials
3131
- title: Special sessions
3232
url: /special-sessions.html
33+
- title: Workshops
34+
url: /workshops.html
3335

3436
social:
3537
twitter: GMLG_Lugano

_data/workshops.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
- date: August 5, 2025
2+
title: Inductive Biases in Reinforcement Learning (IBRL)
3+
url: https://sites.google.com/view/ibrl-workshop/home
4+
venue: RLC 2025
5+
city: Edmonton, Canada
6+

workshops.html

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
---
2+
layout: particles_header
3+
title: Workshops
4+
description: List of past and upcoming workshops from GMLG.
5+
---
6+
<!-- Program section-->
7+
<section>
8+
<div class="container px-4">
9+
<div class="row gx-4 justify-content-center">
10+
<div class="col-lg-8">
11+
<h2>List of Workshops</h2>
12+
<ul>
13+
{% for workshop in site.data.workshops %}
14+
<li>
15+
<a class="h5" href="{{ workshop.url }}">{{ workshop.title }}</a><br>
16+
<span class="text-muted fw-light">{{ workshop.venue }} &sdot; {{ workshop.city }}</span>
17+
<!-- <i>{{ workshop.city }}</i>, {{ workshop.date }}. -->
18+
</li>
19+
{% endfor %}
20+
</ul>
21+
22+
</div>
23+
</div>
24+
</div>
25+
</section>

0 commit comments

Comments
 (0)