This repository has been archived on 2025-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
coryd.dev-eleventy/src/feed.11ty.liquid

14 lines
271 B
Text

---
permalink: '/feed.json'
---
{% assign posts = collections.posts | reverse %}
{
"posts": [
{% for item in posts %}
{
"title": "{{ item.data.title }}",
"url": "{{ item.url }}"
}{% if not loop.last %},{% endif %}
{% endfor %}
]
}