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

26 lines
835 B
Twig
Raw Normal View History

2020-04-28 16:28:47 +00:00
---
permalink: posts.json
use: [posts]
---
{
"posts": [
{% for post in data.posts|reverse %}
{
"id": "{{ loop.index }}",
"title": {{ post.title|json_encode|raw }},
2020-05-06 01:02:57 +00:00
"excerpt": {{ post.excerpt|json_encode|raw }},
2020-04-28 16:28:47 +00:00
"created": "{{ post.date }}",
"updated": "{{ post.date }}",
"path": "{{ post.url|trim('/', 'right') }}",
"content": {{ post.blocks.content|json_encode|raw }},
2020-05-06 00:56:01 +00:00
"status": "{{ post.draft ? '0' : '1' }}",
"tags": [
{% for tag in post.tags %}
"{{ tag }}"{% if not loop.last %},{% endif %}
{% endfor %}
]
2020-04-28 16:28:47 +00:00
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}