15 lines
301 B
JSON
15 lines
301 B
JSON
---
|
|
layout: empty
|
|
---
|
|
|
|
{% capture json %}{
|
|
{% for page in site.pages %}
|
|
"{{ page.url }}": {
|
|
"title": "{{ page.title }}",
|
|
"description": "{{ page.description }}",
|
|
"url": "{{ page.url }}"
|
|
}{% unless forloop.last %},{% endunless %}
|
|
{% endfor %}
|
|
}{% endcapture %}
|
|
{{ json | json_format }}
|