-
Notifications
You must be signed in to change notification settings - Fork 912
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #418 from sylhare/search
Improve search file
- Loading branch information
Showing
8 changed files
with
64 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
[ | ||
{% for post in site.posts %} | ||
{ | ||
{% unless post.excluded %} | ||
"title" : "{{ post.title | strip_newlines | escape }}", | ||
"category" : "{{ post.category }}", | ||
"tags" : "{{ post.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ post.url | relative_url }}", | ||
"date" : "{{ post.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ post.content | strip_html | strip_newlines | strip | escape | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ post.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endunless %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.pages.size > 0 %},{% endif %} | ||
{% for page in site.pages %} | ||
{ | ||
{% unless page.excluded or page.title == nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" | default: "N/A" }}", | ||
"excerpt" : {{ page.content | strip_html | strip_newlines | strip | escape | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ page.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endunless %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.collections.size > 0 %},{% endif %} | ||
{% for collection in site.collections %} | ||
{% for page in site[collection.label] %} | ||
{ | ||
{% if page.excluded or page.title != nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" | default: "N/A" }}", | ||
"excerpt" : {{ page.content | strip_html | strip_newlines | strip | escape | truncate: '250' | jsonify }}, | ||
"content" : {{ page.content | strip_html | strip_newlines | strip | escape | jsonify }} | ||
{% endif %} | ||
}{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,8 @@ | ||
--- | ||
--- | ||
[ | ||
{% for post in site.posts %} | ||
{ | ||
"title" : "{{ post.title | strip_newlines | escape }}", | ||
"category" : "{{ post.category }}", | ||
"tags" : "{{ post.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ post.url | relative_url }}", | ||
"date" : "{{ post.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ post.content | strip_html | truncate: '250' | escape | jsonify }}, | ||
"content" : {{ post.content | strip_html | escape | jsonify }} | ||
} {% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
{% if site.portfolio.size > 0 %},{% endif %} | ||
{% for page in site.portfolio %} | ||
{ | ||
{% if page.title != nil %} | ||
"title" : "{{ page.title | strip_newlines | escape }}", | ||
"category" : "{{ page.category }}", | ||
"tags" : "{{ page.tags | join: ', ' | prepend: " " }}", | ||
"url" : "{{ page.url | relative_url }}", | ||
"date" : "{{ page.date | date: "%B %-d, %Y" }}", | ||
"excerpt" : {{ page.content | strip_html | truncate: '250' | jsonify }}, | ||
"content" : {{ page.content | strip_html | escape | jsonify }} | ||
{% endif %} | ||
} {% unless forloop.last %},{% endunless %} | ||
{% endfor %} | ||
] | ||
{% comment %} | ||
The json is created in search_input.liquid and included here to be compresed | ||
{% endcomment %} | ||
{% capture _search %}{% include default/search_input.liquid %}{% endcapture %} | ||
{% assign emptyField = '{ },' %} | ||
{{ _search | split: " " | join: " " | remove: emptyField }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ layout: categories | |
title: Categories | ||
permalink: /categories/ | ||
hide: true | ||
excluded: true | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters