14 lines
271 B
Text
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 %}
|
|
]
|
|
}
|