generated from FitzwilliamMuseum/fitz-jeykll-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.json
21 lines (21 loc) · 1003 Bytes
/
data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
---
---
{
{% for entry in site.explore %}
"{{ entry.url | slugify }}": {
"title": "{{ entry.title | xml_escape }}",
"url": "{{site.url}}{{ entry.url | xml_escape }}",
"slug": "{{ entry.permalink | xml_escape }}",
"summary": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | truncatewords: 50 | xml_escape }}",
"content": "{{ entry.content | newline_to_br | replace: '<br />', ' ' | strip_newlines | strip_html | strip | xml_escape }}",
{% if entry.image %}
"thumbnail": "{{site.url}}{{ entry.image | xml_escape }}",
"image": "{{site.url}}{{ entry.image | xml_escape }}"
{% else %}
"thumbnail": "{{site.url}}{{ site.background | xml_escape }}",
"image": "{{site.url}}{{ site.background | xml_escape }}"
{% endif %}
}
{% unless forloop.last %},{% endunless %}
{% endfor %}
}