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

15 lines
248 B
Twig

---
permalink: redirects.json
---
{
"redirects": [
{% for i, redirect in site.redirects %}
{
"id": "{{ i + 1 }}",
"from": "{{ redirect.from }}",
"to": "{{ redirect.to }}"
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}