Skip to content

Instantly share code, notes, and snippets.

@leabs
Last active May 2, 2023 13:16
Show Gist options
  • Save leabs/7029f02a8b002c5210bc90b177c6448b to your computer and use it in GitHub Desktop.
Save leabs/7029f02a8b002c5210bc90b177c6448b to your computer and use it in GitHub Desktop.
Search all Jekyll collections using jekyll-simple-search
---
layout: none
---
{% assign allCollections = site.collections %}
{% for collection in allCollections %}
{% assign allPosts = allPosts | concat: collection.docs %}
{% endfor %}
[
{% for post in allPosts %}
{
"title" : "{{ post.title | escape }}",
"url" : "{{ site.baseurl }}{{ post.url | escape }}"
} {% unless forloop.last %},{% endunless %}
{% endfor %}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment