forked from BlackrockDigital/startbootstrap
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsearch_data.json
More file actions
26 lines (24 loc) · 734 Bytes
/
search_data.json
File metadata and controls
26 lines (24 loc) · 734 Bytes
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
---
layout: null
---
{
{% for post in site.posts %}
"{{ post.url | slugify }}": {
"title": "{{ post.title | xml_escape }}",
"url": " {{ post.url | xml_escape }}",
"author": "{{ post.author | xml_escape }}",
"category": "{{ post.categories | xml_escape }}",
"source": "{{ post.source | xml_escape }}",
"description": "{{ post.description | xml_escape }}"
}
,
{% endfor %}
{% for template in site.templates %}
"{{ template.url | slugify }}": {
"title": "{{ template.title | xml_escape }}",
"url": " {{ template.url | xml_escape }}",
"description": "{{ template.description | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
}