-
Notifications
You must be signed in to change notification settings - Fork 6
/
site.json
36 lines (36 loc) · 973 Bytes
/
site.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
---
layout: null
---
{
"pages": [
{% for page in site.pages %}
{% include page.json page=page %}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"posts": [
{% for page in site.posts %}
{% include page.json page=page %}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"topics": [
{% for page in site.topics %}
{% include page.json page=page %}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"resources": [
{% for page in site.resources %}
{% include page.json page=page %}{% unless forloop.last %},{% endunless %}
{% endfor %}
],
"categories": {
{% for category in site.categories %}
{% if category[0] %}
{{ category[0] | jsonify }}: [
{% for page in category[1] %}
{% include page.json page=page %}{% unless forloop.last %},{% endunless %}
{% endfor %}
]{% unless forloop.last %},{% endunless %}
{% endif %}
{% endfor %}
}
}