-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathworks.json
More file actions
26 lines (25 loc) · 748 Bytes
/
Copy pathworks.json
File metadata and controls
26 lines (25 loc) · 748 Bytes
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
---
layout: null
---
[
{% assign works=site.works | where: "visibility","published" | where: "publish-mi-website", true %}
{% for item in works %}
{
"title": "{{ item.title }}",
"author": "{{ item.author }}",
"date": "{{ item.date }}",
"type": "{{ item.type }}",
"status": "{{ item.status }}",
"keywords": "{{ item.keywords }}",
"firstExaminer": "{{ site.first-examiner }}",
"secondExaminer": "{{ item.second-examiner }}",
"partner": "{{ item.partner }}",
"partnerUrl": "{{ item.partner-url }}",
"image": "{{ item.thumbnail }}",
"relatedFolder": "{{ item.related-folder }}",
"abstract": "{{ item.content | strip_newlines | escape }}",
"url": "{{ item.url }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
]