This repository has been archived by the owner on Nov 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.json
49 lines (49 loc) · 2.41 KB
/
index.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
37
38
39
40
41
42
43
44
45
46
47
48
49
---
layout: null
---
{
"software": [{% for item in site.software %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}],
"project": [{% for item in site.project %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}],
"person": [{% for item in site.person %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}],
"organization": [{% for item in site.organization %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}],
"report": [{% for item in site.report %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"date": {{ item.date | date_to_xmlschema | jsonify }},
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}],
"publication": [{% for item in site.publication %}{
"@id": {{ item.url | replace:'.html','' | prepend:site.url | jsonify }},
{% for k in item %}{% unless site.json_excludes contains k %}{{ k | jsonify }}: {{ item[k] | jsonify }},
{% endunless %}{% endfor %}
"date": {{ item.date | date_to_xmlschema | jsonify }},
"description": {{ item.content | jsonify }}
}{% unless forloop.last %},{% endunless %}
{% endfor %}]
}