pelican-mg/templates/tipue_search.html

15 lines
393 B
HTML

{
"pages": [
{% set comma = joiner(',') %}
{% for item in articles + pages %}
{{comma()}}
{
"title": {{item.title|striptags|tojson}},
"text": {{item.content|striptags|tojson}},
"tags": "{{' '.join(item.tags|map(attribute="name"))}}",
"loc": "{{ SITEURL }}/{{item.url}}"
}
{% endfor %}
]
}