-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbeep.html
More file actions
29 lines (26 loc) · 718 Bytes
/
beep.html
File metadata and controls
29 lines (26 loc) · 718 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
27
28
29
---
permalink: /api/beep.json
---
[
{% for fan in collections.fan %}
{
"title": "{{ fan.data.title | escape }}",
"description": "{{ fan.data.description }}",
"url": "{{ fan.url }}"
}{{ '' if loop.last else ',' }}
{% endfor %},
{% for ups in collections.ups %}
{
"title": "{{ ups.data.title | escape }}",
"description": "{{ ups.data.description }}",
"url": "{{ ups.url }}"
}{{ '' if loop.last else ',' }}
{% endfor %},
{%- for scale in collections.scale -%}
{
"title": "{{ scale.data.title | escape }}",
"description": "{{ scale.data.description }}",
"url": "{{ scale.url }}"
}{{ '' if loop.last else ',' }}
{%- endfor -%}
]