mirror of
https://github.com/c0de-archive/pelican-mg.git
synced 2024-12-22 08:22:40 +00:00
15 lines
354 B
HTML
15 lines
354 B
HTML
{
|
|
"pages": [
|
|
{% set comma = joiner(',') %}
|
|
{% for item in articles + pages %}
|
|
{{comma()}}
|
|
{
|
|
"title": "{{item.title|striptags|e}}",
|
|
"text":"{{item.content|striptags|e}}",
|
|
"tags": "{{item.tags}}",
|
|
"loc": "{{ SITEURL }}/{{item.url}}"
|
|
}
|
|
{% endfor %}
|
|
]
|
|
}
|