Added search with Tipue Search

This commit is contained in:
Luca Chiricozzi
2015-01-09 00:10:05 +01:00
parent 248fe15c2a
commit 8f3afdc695
8 changed files with 755 additions and 3 deletions

View File

@@ -0,0 +1,16 @@
{
"pages": [
{% set len = (articles + pages)| length %}
{% for item in articles + pages %}
{
"title": "{{item.title|striptags|e}}",
"text":"{{item.content|striptags|e}}",
"tags": "{{item.category}}",
"loc": "{{ SITEURL }}/{{item.url}}"
}{% if loop.index < len %},
{% else %}
{% endif %}
{% endfor %}
]
}