zet.oliverdavies.uk/source/zets.json.twig

17 lines
353 B
Twig
Raw Normal View History

2024-09-04 08:00:00 +00:00
---
permalink: /notes.json
2024-09-14 15:57:43 +00:00
use: [zets]
2024-09-04 08:00:00 +00:00
---
[
2024-09-14 15:57:43 +00:00
{% for note in data.zets|sort((a,b) => b.date <=> a.date) %}
2024-09-04 08:00:00 +00:00
{
"id": {{ note.filename|replace({".md": ""}) }},
"date": {{ note.date }},
"title": "{{ note.title }}",
"url": "{{ site.url }}/{{ note.url|trim("/") }}"
}
{%~ if not loop.last %},{% endif %}
{% endfor %}
]