forked from chadev/chadev.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevs.json
More file actions
25 lines (24 loc) · 682 Bytes
/
devs.json
File metadata and controls
25 lines (24 loc) · 682 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
---
layout: json
---
{
"devs": [
{% assign sorted_devs = site.devs | sort:"name" %}
{% for page in sorted_devs %}
{
"name": "{{ page.name }}",
"github": "{{ page.github }}",
"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 %}
]
}