pelican-mg/templates/tipue_search.html

15 lines
354 B
HTML
Raw Normal View History

2015-01-08 23:10:05 +00:00
{
"pages": [
{% set comma = joiner(',') %}
2015-01-08 23:10:05 +00:00
{% for item in articles + pages %}
{{comma()}}
2015-01-08 23:10:05 +00:00
{
2017-08-10 16:30:29 +00:00
"title": "{{item.title|striptags|e}}",
"text":"{{item.content|striptags|e}}",
"tags": "{{item.tags}}",
2015-01-08 23:10:05 +00:00
"loc": "{{ SITEURL }}/{{item.url}}"
}
2015-01-08 23:10:05 +00:00
{% endfor %}
]
}