fix: dates as strings
This commit is contained in:
parent
867de2c3bd
commit
74c7f99d3a
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ permalink: '/follow.json'
|
||||||
"id": "{{ item.id }}",
|
"id": "{{ item.id }}",
|
||||||
"title": "{{ item.title }}",
|
"title": "{{ item.title }}",
|
||||||
"url": "{{ item.url }}",
|
"url": "{{ item.url }}",
|
||||||
"date_published": {{ item.date_published | date: "%m.%d.%Y" }}
|
"date_published": "{{ item.date_published | date: "%m.%d.%Y" }}"
|
||||||
}{% if not forloop.last %},{% endif %}
|
}{% if not forloop.last %},{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
]
|
]
|
||||||
|
|
Reference in a new issue