search.json 354 Bytes
Newer Older
Mark Otto's avatar
Mark Otto committed
1
2
3
4
5
---
# Leave it empty to compile
---

[
XhmikosR's avatar
XhmikosR committed
6
7
8
{% assign sorted_pages = site.html_pages | sort: 'title' %}
{% for page in sorted_pages %}
    {% if page.title %}
XhmikosR's avatar
XhmikosR committed
9
        {
XhmikosR's avatar
XhmikosR committed
10
11
            "title" : {{ page.title | jsonify }},
            "url"   : "{{ site.baseurl }}{{ page.url }}"
XhmikosR's avatar
XhmikosR committed
12
        } {% unless forloop.last %},{% endunless %}
XhmikosR's avatar
XhmikosR committed
13
14
    {% endif %}
{% endfor %}
Mark Otto's avatar
Mark Otto committed
15
]