-
Notifications
You must be signed in to change notification settings - Fork 3
/
search.json
80 lines (65 loc) · 1.99 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
---
---
[
{% for post in site.posts %}
{
"title" : "{{ post.title | escape }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"date" : "{{ post.date }}"
},
{% endfor %}
{% for page in site.people %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"category" : "{{ page.category }}",
"name" : "{{ page.name }}",
"bio" : {{ page.content | strip_html | jsonify }}
},
{% endfor %}
{% for page in site.training %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"category" : "{{ page.category }}",
"service" : "{{ page.service }}",
"content" : {{ page.content | strip_html | jsonify }}
},
{% endfor %}
{% for page in site.coaching %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"category" : "{{ page.category }}",
"service" : "{{ page.service }}",
"content" : {{ page.content | strip_html | jsonify }}
},
{% endfor %}
{% for page in site.consulting %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"category" : "{{ page.category }}",
"service" : "{{ page.service }}",
"content" : {{ page.content | strip_html | jsonify }}
},
{% endfor %}
{% for page in site.help %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"question" : "{{ page.question }}",
"answer" : {{ page.content | strip_html | jsonify }}
},
{% endfor %}
{% for page in site.guide %}
{
"title" : "{{ page.title | escape }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"category" : "{{ page.category }}",
"content" : {{ page.content | strip_html | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}
]