-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathworkshops.html
More file actions
32 lines (24 loc) · 839 Bytes
/
workshops.html
File metadata and controls
32 lines (24 loc) · 839 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
30
31
32
---
layout: default
title: Workshops
permalink: /workshops/
---
<h1>Workshops</h1>
{% capture track %} {{site.workshops.first.track}} {% endcapture %}
{% capture module %} {{site.workshops.first.module}} {% endcapture %}
<h2>{{ track }}</h2>
<h3>{{ module }}</h3>
{% for workshop in site.workshops %}
<br>
{% capture current_track %} {{workshop.track}} {% endcapture %}
{% capture current_module %} {{workshop.module}} {% endcapture %}
{% if current_track != track %}
<h2>{{ current_track }}</h2>
{% capture track %} {{workshop.track}} {% endcapture %}
{% endif %}
{% if current_module != module %}
<h3>{{ current_module }}</h3>
{% capture module %} {{workshop.module}} {% endcapture %}
{% endif %}
<li><a href="{{ site.baseurl }}{{ workshop.url }}" itemprop="url">{{ workshop.url }}</a></li>
{% endfor %}