-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
23 lines (23 loc) · 902 Bytes
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
layout: none
---
{
{% assign workshops = site.data.workshop_list_scratch
%}
{% for workshop in workshops %}
{% if workshop.URL != "NA" %}
{% assign title = workshop.Title | strip_newlines | remove: '"' %}
"{{ title }}": {
"title" : "{{ title }}",
"year" : "{{ workshop.Year }}",
"url" : "{{ workshop.URL }}",
"image" : "{{ workshop.Image }}",
"series" : "{{ workshop.Series }}",
"type" : "{{ workshop.Type }}",
"topic" : "{{ workshop.Topic }}",
"software" : "{{ workshop.Software }}"
{% comment %}{ {% assign splitTags = workshop.tags | split: ", " %} / [{% for tag in splitTags %}"{{tag}}"{% unless forloop.last %}, {% endunless %}{% endfor %}]{% endcomment %}
}{% unless forloop.last %},{% endunless %}
{% endif %}
{% endfor %}
}