theshell.ch/site/search.json
maggicl ea515f2e04 css: tweaked search to use category_title instead of category
git-svn-id: svn+ssh://atelier.inf.usi.ch/home/bevilj/group-1@62 a672b425-5310-4d7a-af5c-997e18724b81
2018-11-08 14:10:36 +00:00

20 lines
410 B
JSON

---
layout: null
category: nosearch
author: Claudio Maggioni
---
[
{% for page in site.pages %}
{% if page.category != "nosearch" %}
{
"title" : "{{ page.title | escape }}",
"tags" : "{{ page.tags | join: ', ' }}",
"url" : "{{ page.baseurl }}{{ page.url }}",
"date" : "{{ page.date }}",
"category": "{{ page.category_title }}"
},
{% endif %}
{% endfor %}
null
]