mirror of
https://github.com/mdbootstrap/mdb-ui-kit.git
synced 2024-11-10 19:57:13 +03:00
ac37625123
This reverts commit 162fd8e9b8
.
16 lines
306 B
JSON
16 lines
306 B
JSON
---
|
|
# Leave it empty to compile
|
|
---
|
|
|
|
[
|
|
{% assign sorted_pages = site.html_pages | sort: 'title' %}
|
|
{% for page in sorted_pages %}
|
|
{% if page.title %}
|
|
{
|
|
"title" : {{ page.title | jsonify }},
|
|
"url" : "{{ site.baseurl }}{{ page.url }}"
|
|
} {% unless forloop.last %},{% endunless %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
]
|