-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkshops.html
More file actions
25 lines (24 loc) · 866 Bytes
/
workshops.html
File metadata and controls
25 lines (24 loc) · 866 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: Workshops
description: List of past and upcoming workshops 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 Workshops</h2>
<ul>
{% for workshop in site.data.workshops %}
<li>
<a class="h5" href="{{ workshop.url }}">{{ workshop.title }}</a><br>
<span class="text-muted fw-light">{{ workshop.venue }} ⋅ {{ workshop.city }}</span>
<!-- <i>{{ workshop.city }}</i>, {{ workshop.date }}. -->
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>