forked from mitou/jr.mitou.org
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mentors.json
19 lines (18 loc) · 814 Bytes
/
mentors.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
---
---
{% assign mentors = site.data.mentors | where_exp: 'mentor', 'mentor.is_alumni != true' %}
[ {% for mentor in mentors %}
{
"id" : "{{ mentor.id }}",
"url" : "{{ site.url }}/mentors#{{ mentor.id }}",
"name" : "{{ mentor.name.last }} {{ mentor.name.first }}",
"affilication" : "{{ mentor.affiliation }}",
"interested" : "{{ mentor.interested | escape }}",
"bio" : "{{ mentor.bio | escape }}",
"img" : "{{ site.url }}/assets/img/mentors/{{ mentor.img }}",
"projects" : [
{% assign pjs = site.data.projects | where_exp: "pj", "pj.mentor_id == mentor.id" %}
{% for pj in pjs %}"{{ pj.title }}"{% unless forloop.last %}, {% endunless %}{% endfor %}
]
}{% unless forloop.last %},{% endunless %}{% endfor %}
]