-
Notifications
You must be signed in to change notification settings - Fork 356
/
Copy pathfellows_search
39 lines (38 loc) · 1.17 KB
/
fellows_search
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
33
34
35
36
37
38
39
---
permalink: /fellows_search.json
layout: null
---
[
{% assign id = 0 %}
{% for post in site.fellows %}
{% assign id = id | plus: 1 %}
{
"id" : {{ id }},
"name" : "{{ post.fellow-name }}",
"url" : "{{ site.url }}{{ post.permalink }}",
"projects" : [
{% if post.projects.size > 0 %}
{% for project in post.projects %}
{
"name" : "{{ project.project_title | strip }}",
"mentors" : [
{% for mentor in project.mentors %}
"{{ mentor }}"{% unless forloop.last %},{% endunless %}
{% endfor %}
]
} {% unless forloop.last %},{% endunless %}
{% endfor %}
{% else %}
{
"name" : "{{ post.project_title | strip }}",
"mentors" : [
{% for mentor in post.mentors %}
"{{ mentor }}"{% unless forloop.last %},{% endunless %}
{% endfor %}
]
}
{% endif %}
]
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]