-
Notifications
You must be signed in to change notification settings - Fork 68
/
groups.json
24 lines (24 loc) · 914 Bytes
/
groups.json
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: json
---
{
"groups": [
{% for page in site.data.groups %}
{
"name": "{{ page.name }}",
"github": "{{ page.github }}",
"code-of-conduct": "{{ page.code-of-conduct }}",
"gravatar-id": "{{ page.gravatar-id }}"{% if page.urls %},
"urls": [
{% for url in page.urls %}
{
"name": "{{ url.name }}",
"url": "{{ url.url }}"
}{% if forloop.last == false %},{% endif %}
{% endfor %}
]
{% endif %}
}{% if forloop.last == false %},{% endif %}
{% endfor %}
]
}