-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsearch.json
36 lines (32 loc) · 912 Bytes
/
search.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
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: null
---
[
{% for post in site.people %}
{
"title" : "{{ post.title | escape }}",
"subtitle" : "{{ post.position}}",
"type" : "People",
"url" : "{{ site.baseurl }}{{ post.url }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
,
{% for post in site.teaching %}
{
"title" : "{{ post.title | escape }}",
"subtitle" : "{{ post.semester}}",
"type" : "Courses",
"url" : "{{ site.baseurl }}{{ post.url }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
,
{% for post in site.publications %}
{
"title" : "{{ post.title | escape }}",
"subtitle" : "{{ post.authors}}",
"type" : "Publications",
"url" : "{{ site.baseurl }}{{ post.url }}",
"date" : "{{ post.date }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]