search.json 664 B

123456789101112131415161718192021222324252627282930313233
  1. ---
  2. title: search
  3. layout: none
  4. search: exclude
  5. ---
  6. [
  7. {% for page in site.pages %}
  8. {% unless page.search == "exclude" %}
  9. {
  10. "title": "{{ page.title | escape }}",
  11. "tags": "{{ page.tags }}",
  12. "keywords": "{{page.keywords}}",
  13. "url": "{{ page.url | remove: "/"}}",
  14. "summary": "{{page.summary | strip }}"
  15. }
  16. {% unless forloop.last and site.posts.size < 1 %},{% endunless %}
  17. {% endunless %}
  18. {% endfor %}
  19. {% for post in site.posts %}
  20. {
  21. "title": "{{ post.title | escape }}",
  22. "tags": "{{ post.tags }}",
  23. "keywords": "{{post.keywords}}",
  24. "url": "{{ post.url | remove: "/" }}",
  25. "summary": "{{post.summary | strip }}"
  26. }
  27. {% unless forloop.last %},{% endunless %}
  28. {% endfor %}
  29. ]