fix: loop syntax
This commit is contained in:
parent
99ae993986
commit
d8e9009d22
2 changed files with 2 additions and 2 deletions
|
@ -12,7 +12,7 @@ permalink: '/feed.json'
|
|||
{
|
||||
"title": "{{ item.data.title }}",
|
||||
"url": "{{ item.url }}"
|
||||
}{% if not loop.last %},{% endif %}
|
||||
}{% if not forloop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
]
|
||||
}
|
|
@ -12,7 +12,7 @@ permalink: '/follow.json'
|
|||
{
|
||||
"title": "{{ item.title }}",
|
||||
"url": "{{ item.url }}"
|
||||
}{% if not loop.last %},{% endif %}
|
||||
}{% if not forloop.last %},{% endif %}
|
||||
{% endfor %}
|
||||
]
|
||||
}
|
Reference in a new issue