Skip to content

Commit

Permalink
Compress search
Browse files Browse the repository at this point in the history
  • Loading branch information
sylhare committed Dec 13, 2023
1 parent 768e2d0 commit 38f2cdc
Showing 1 changed file with 5 additions and 27 deletions.
32 changes: 5 additions & 27 deletions assets/data/search.liquid
Original file line number Diff line number Diff line change
@@ -1,29 +1,7 @@
---
---
[
{% 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 %}
{{ _search | split: " " | join: " " }}

0 comments on commit 38f2cdc

Please sign in to comment.