-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspecial-sessions.html
More file actions
25 lines (24 loc) · 943 Bytes
/
special-sessions.html
File metadata and controls
25 lines (24 loc) · 943 Bytes
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
---
layout: particles_header
title: Special Sessions
description: List of past and upcoming special sessions from GMLG.
---
<!-- Program section-->
<section>
<div class="container px-4">
<div class="row gx-4 justify-content-center">
<div class="col-lg-8">
<h2>List of special sessions</h2>
<ul>
{% for special_session in site.data.special_sessions %}
<li>
<a class="h5" href="{{ special_session.url }}">{{ special_session.title }}</a><br>
<span class="text-muted fw-light">{{ special_session.venue }} ⋅ {{ special_session.city }}</span>
<!-- <i>{{ special_session.city }}</i>, {{ special_session.date }}. -->
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>