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/posts.json.twig
2020-05-12 22:12:30 +01:00

25 lines
772 B
Twig

---
permalink: posts.json
use: [posts]
---
{
"posts": [
{% for post in data.posts|reverse %}
{
"id": "{{ loop.index }}",
"title": {{ post.title|json_encode|raw }},
"created": "{{ post.date }}",
"updated": "{{ post.date }}",
"path": "{{ post.url|trim('/', 'right') }}",
"content": {{ post.blocks.content|json_encode|raw }},
"status": "{{ post.draft ? '0' : '1' }}",
"tags": [
{% for tag in post.tags %}
"{{ tag }}"{% if not loop.last %},{% endif %}
{% endfor %}
]
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}