This repository has been archived on 2025-01-19. You can view files and clone it, but cannot push or open issues or pull requests.
oliverdavies.uk-old-sculpin/source/talks.json.twig

37 lines
1.3 KiB
Twig
Raw Normal View History

2020-04-29 01:26:15 +00:00
---
permalink: talks.json
use: [talks]
---
{
"talks": [
{% for talk in data.talks %}
{
"id": "{{ loop.index }}",
"title": {{ talk.title|json_encode|raw }},
"description": "{{ talk.description }}",
"path": "{{ talk.url|trim('/', 'right') }}",
"content": {{ talk.blocks.content|json_encode|raw }},
"video": {
"type": "{{ talk.video.type }}",
"id": "{{ talk.video.id }}"
},
"speakerdeck": {
"id": "{{ talk.speakerdeck.id }}",
"ratio": "{{ talk.speakerdeck.ratio }}"
},
"events": [
{% for event in talk.events %}
{
"date": "{{ event.date }}",
"remote": "{{ event.remote ? 'true' : 'false' }}",
"name": "{{ site.events[event.event].name }}",
"location": "{{ site.events[event.event].location }}",
"url": "{{ site.events[event.event].url }}"
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}