Created
April 26, 2021 11:25
-
-
Save arielsalminen/25a569b70222a65e2fd98bfaff2f1604 to your computer and use it in GitHub Desktop.
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
--- | |
permalink: search.json | |
eleventyExcludeFromCollections: true | |
--- | |
{"search" : [ | |
{%- for page in collections.all %} | |
{ | |
"url" : "{{ page.url }}", | |
"title" : "{% if page.data.title %}{{ page.data.title }}{% else %}Nord Design System{%- endif -%}", | |
"text" : "{% if page.data.intro %}{{ page.data.intro | squash }}{%- endif -%} {% if page.data.description %}{{ page.data.description | squash }}{%- endif -%} {{ page.templateContent | squash }}", | |
"readabletitle" : "{{ page.data.title | indexer }}", | |
"keywords" : "{{ (page.data.title + " " + page.templateContent) | indexer }}{% if page.data.intro %}{{ page.data.intro | indexer }}{%- endif -%} {% if page.data.description %}{{ page.data.description | indexer }}{%- endif -%}" | |
}{% if not loop.last %},{% else %}{%- endif -%} | |
{%- endfor %} | |
]} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment