mirror of
https://github.com/apache/zeppelin
synced 2026-05-24 09:38:26 +00:00
18 lines
503 B
JSON
18 lines
503 B
JSON
|
|
---
|
||
|
|
layout: null
|
||
|
|
---
|
||
|
|
{
|
||
|
|
{% for page in site.pages %}{% if page.title != nil %}
|
||
|
|
|
||
|
|
"{{ page.url | slugify }}": {
|
||
|
|
"title": "{{ page.title | xml_escape }}",
|
||
|
|
"content" : "{{page.content | strip_html | strip_newlines | escape | remove: "\"}}",
|
||
|
|
"url": " {{ page.url | xml_escape }}",
|
||
|
|
"group": "{{ page.group }}",
|
||
|
|
"excerpt": {{ page.description | strip_html | truncatewords: 40 | jsonify }}
|
||
|
|
}
|
||
|
|
{% unless forloop.last %},{% endunless %}
|
||
|
|
{% endif %}
|
||
|
|
{% endfor %}
|
||
|
|
}
|