generated from FitzwilliamMuseum/fitz-jeykll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.json
25 lines (25 loc) · 1.28 KB
/
data.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
---
---
{
{% for entry in site.posts %}
"{{ entry.url | slugify }}": {
"title": "{{ entry.title | xml_escape }}",
"url": "{{ entry.url | xml_escape }}",
"summary": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | xml_escape | truncatewords: 50 }}",
"content": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | xml_escape }}",
"category": "{{ entry.category | xml_escape }}",
"image": "{{ entry.image | xml_escape }}"
},
{% endfor %}
{% for entry in site.exhibition %}
"{{ entry.url | slugify }}": {
"title": "{{ entry.title | xml_escape }}",
"url": "{{ entry.url | xml_escape }}",
"summary": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | xml_escape | truncatewords: 50 }}",
"content": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | xml_escape }}",
"category": "{{ entry.category | xml_escape }}",
"image": "{{ entry.thumbnail | xml_escape }}"
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
}