forked from workflowscommunity/workflowscommunity.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.json
53 lines (53 loc) · 1.69 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
---
---
[
{% for system in site.systems %}
{
"title" : "{{ system.title }}",
"url" : "{{ site.baseurl }}{{ system.url }}",
"description" : "{{ system.description | strip_html | strip_newlines | escape }}",
"tags" : "{{ system.tags | array_to_sentence_string: '' }}",
"category" : "system"
},
{% endfor %}
{% for job in site.jobs %}
{
"title" : "{{ job.title }}",
"url" : "{{ site.baseurl }}{{ job.url }}",
"description" : "{{ job.content | strip_html | strip_newlines | escape }}",
"category" : "job"
},
{% endfor %}
{% for story in site.stories %}
{
"title" : "{{ story.title }}",
"url" : "{{ site.baseurl }}{{ story.url }}",
"description" : "{{ story.content | strip_html | strip_newlines | escape }}",
"category" : "story"
},
{% endfor %}
{% for event in site.data.events %}
{
"title" : "{{ event.series }} ({{ event.type }})",
"url" : "{{ event.url }}",
"description" : "{{ event.name }}",
"category" : "event"
},
{% endfor %}
{% for bof in site.bofs %}
{
"title" : "{{ bof.title }}",
"url" : "{{ bof.url }}",
"description" : "{{bof.event_date | date: '%b %d, %Y' }}<br />{{ bof.subtitle }}",
"category" : "bof"
},
{% endfor %}
{% for summit in site.summits %}
{
"title" : "{{ summit.title }}",
"url" : "{{ summit.url }}",
"description" : "{{summit.event_date | date: '%b %d, %Y' }}<br />{{ summit.subtitle }}",
"category" : "summit"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]