-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathworkshops.html
More file actions
29 lines (26 loc) · 856 Bytes
/
workshops.html
File metadata and controls
29 lines (26 loc) · 856 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
26
27
28
29
---
layout: default
---
<section class="tone-dark">
<h1>{{ site.data.workshops.name }}</h1>
{{ site.data.workshops.description | markdownify }}
{% if site.data.info.luma %}
<p>Check out our <a href="{{ site.data.info.luma }}">Luma</a> calendar for upcoming workshops!</p>
{% endif %}
{% comment %}
{% if site.data.info.socials.discord %}
<p>Join our <a href="{{ site.data.info.socials.discord }}">Discord</a> to be notified of future workshops!</p>
{% endif %}
{% endcomment %}
</section>
<section>
<div class="items-container">
{% for workshop in site.data.workshops.items %}
<div class="item-generic">
<h2>{{ workshop[0] }}</h2>
<p>{{ workshop[1].description | markdownify }}</p>
<p><a href="{{ workshop[1].material }}">Material</a></p>
</div>
{% endfor %}
</div>
</section>