fix time format

This commit is contained in:
Cory Dransfeldt 2023-03-28 13:20:26 -07:00
parent fbfda613bd
commit b755803eef
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -14,7 +14,7 @@ permalink: '/feed.json'
"title": "{{ item.data.title }}",
"url": "{{ site.url }}{{ item.url }}",
"content_html": "",
"date_published" "{{ item.date | date: "%Y-%m-%dT%H:%M" }}"
"date_published" "{{ item.date | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %}
{% endfor %}
]

View file

@ -14,7 +14,7 @@ permalink: '/follow.json'
"title": "{{ item.title }}",
"url": "{{ item.url }}",
"content_html": "",
"date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M" }}"
"date_published": "{{ item.date_published | date: "%Y-%m-%dT%H:%M:%S-08:00" }}"
}{% if not forloop.last %},{% endif %}
{% endfor %}
]