-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtutorials.html
More file actions
24 lines (23 loc) · 779 Bytes
/
tutorials.html
File metadata and controls
24 lines (23 loc) · 779 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
---
layout: particles_header
title: Tutorials
description: List of past and upcoming tutorials 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 tutorials</h2>
<ul>
{% for tutorial in site.tutorials %}
<li>
<a class="h5" href="{{ tutorial.url }}">{{ tutorial.title }}</a><br>
<span class="text-muted fw-light">{{ tutorial.venue }} ⋅ {{ tutorial.city }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</section>