Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search.json « docs - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7cd8517bc9e1746962a46fe2df4f9f28b00a780b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
---
# 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 %}
]