fix: loop syntax

This commit is contained in:
Cory Dransfeldt 2023-03-28 11:08:33 -07:00
parent 99ae993986
commit d8e9009d22
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -12,7 +12,7 @@ permalink: '/feed.json'
{ {
"title": "{{ item.data.title }}", "title": "{{ item.data.title }}",
"url": "{{ item.url }}" "url": "{{ item.url }}"
}{% if not loop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}
] ]
} }

View file

@ -12,7 +12,7 @@ permalink: '/follow.json'
{ {
"title": "{{ item.title }}", "title": "{{ item.title }}",
"url": "{{ item.url }}" "url": "{{ item.url }}"
}{% if not loop.last %},{% endif %} }{% if not forloop.last %},{% endif %}
{% endfor %} {% endfor %}
] ]
} }