styled feed; bug fixes

This commit is contained in:
Cory Dransfeldt 2023-03-15 16:33:42 -07:00
parent 18927e73ea
commit 9b17dc6d18
No known key found for this signature in database
9 changed files with 143 additions and 3 deletions

View file

@ -1,9 +1,10 @@
---
permalink: '/feed.json'
---
{% assign posts = collections.posts | reverse %}
{
"posts": [
{% for item in collections.posts %}
{% for item in posts %}
{
"title": "{{ item.data.title }}",
"url": "{{ item.url }}"