styled feed; bug fixes
This commit is contained in:
parent
18927e73ea
commit
9b17dc6d18
9 changed files with 143 additions and 3 deletions
|
@ -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 }}"
|
||||
|
|
Reference in a new issue