boxes/search.json
Thomas Jensen c049484e4c
Update website design
- Updated frameworks for better browser support
- Improved responsive design
- Versioned documentation
- Better social media support via the Jekyll SEO plugin
- New looks, fwiw
- Start page has some more relevant info
- Documentation sorted to be more easily accessible
- Internally upgraded from plain CSS to SASS
2021-05-26 21:13:21 +02:00

20 lines
635 B
JSON

---
layout: none
---
[
{% for post in site.pages %}
{%- capture page_ext -%}{{ post.name | slice: -3, 3 }}{%- endcapture -%}
{%- if page_ext == ".md" -%}
{
"title" : "{{ post.title | strip_html | escape }}",
"name" : "{{ post.name | strip_html | escape }}",
"url" : "{{ site.baseurl }}{{ post.url }}",
"category" : "{{ post.category }}",
"tags" : "{{ post.tags | join: ', ' }}",
"date" : "{{ post.date }}",
"content" : "{{ post.content | markdownify | strip_html | downcase | slugify | replace: "-", " " | escape }}"
} {%- unless forloop.last -%},{%- endunless -%}
{%- endif -%}
{% endfor %}
]