committing new version of jekyll doc theme -- 5.0, with some refinements to come with the documentation
This commit is contained in:
17
search.json
17
search.json
@ -11,11 +11,22 @@ search: exclude
|
||||
"title": "{{ page.title | escape }}",
|
||||
"tags": "{{ page.tags }}",
|
||||
"keywords": "{{page.keywords}}",
|
||||
"url": "{{ page.url | prepend: '..' }}",
|
||||
"url": "{{ page.url | prepend: site.baseurl }}",
|
||||
"summary": "{{page.summary}}"
|
||||
},
|
||||
{% endunless %}
|
||||
|
||||
{% endfor %}
|
||||
null
|
||||
|
||||
{% for post in site.posts %}
|
||||
|
||||
{
|
||||
"title": "{{ post.title | escape }}",
|
||||
"tags": "{{ post.tags }}",
|
||||
"keywords": "{{post.keywords}}",
|
||||
"url": "{{ post.url | prepend: site.baseurl }}",
|
||||
"summary": "{{post.summary}}"
|
||||
}
|
||||
{% unless forloop.last %},{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
]
|
Reference in New Issue
Block a user