-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathsearch.json
More file actions
45 lines (44 loc) · 1.12 KB
/
search.json
File metadata and controls
45 lines (44 loc) · 1.12 KB
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
---
layout: none
---
[
{% assign posts_with_title = site.pages | where_exp: "post", "post.title" %}
{% for post in posts_with_title %}
{% unless post.url contains 'signup_thankyou' %}
{
"title": "{{ post.title | escape }}",
"url": "{{ site.baseurl }}{{ post.url }}"
},
{% endunless %}
{% endfor %}
{% for kata in site.kata_descriptions %}
{
"title" : "Kata: {{ kata.title | escape }}",
"url" : "{{ site.baseurl }}{{ kata.url }}"
},
{% endfor %}
{% for activity in site.activities %}
{
"title" : "Activity: {{ activity.title | escape }}",
"url" : "{{ site.baseurl }}{{ activity.url }}"
},
{% endfor %}
{% for smell in site.code_smells %}
{
"title" : "Code Smell: {{ smell.title | escape }}",
"url" : "{{ site.baseurl }}{{ smell.url }}"
},
{% endfor %}
{% for refactoring in site.refactorings %}
{
"title" : "Refactoring: {{ refactoring.title | escape }}",
"url" : "{{ site.baseurl }}{{ refactoring.url }}"
},
{% endfor %}
{% for lh in site.learning_hours %}
{
"title" : "Learning Hour: {{ lh.title | escape }}",
"url" : "{{ site.baseurl }}{{ lh.url }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]