Adding docs folder, with skeleton jekyll based site
- Uses https://github.com/tomjohnson1492/documentation-theme-jekyll - Have filler pages
This commit is contained in:
33
docs/search.json
Normal file
33
docs/search.json
Normal file
@@ -0,0 +1,33 @@
|
||||
---
|
||||
title: search
|
||||
layout: none
|
||||
search: exclude
|
||||
---
|
||||
|
||||
[
|
||||
{% for page in site.pages %}
|
||||
{% unless page.search == "exclude" %}
|
||||
{
|
||||
"title": "{{ page.title | escape }}",
|
||||
"tags": "{{ page.tags }}",
|
||||
"keywords": "{{page.keywords}}",
|
||||
"url": "{{ page.url | remove: "/"}}",
|
||||
"summary": "{{page.summary | strip }}"
|
||||
}
|
||||
{% unless forloop.last and site.posts.size < 1 %},{% endunless %}
|
||||
{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
{% for post in site.posts %}
|
||||
|
||||
{
|
||||
"title": "{{ post.title | escape }}",
|
||||
"tags": "{{ post.tags }}",
|
||||
"keywords": "{{post.keywords}}",
|
||||
"url": "{{ post.url }}",
|
||||
"summary": "{{post.summary | strip }}"
|
||||
}
|
||||
{% unless forloop.last %},{% endunless %}
|
||||
{% endfor %}
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user