chore: feed updates

This commit is contained in:
Cory Dransfeldt 2023-09-08 09:00:04 -07:00
parent 70caf3eb21
commit d76c9f7351
No known key found for this signature in database
5 changed files with 29 additions and 6 deletions

View file

@ -7,8 +7,8 @@
"feed_url": "{{ site.url }}{{ permalink }}",
"items": [{% for entry in entries limit: 20 -%}
{
"id": "{{ entry.id }}",
"title": "{{ entry.title | escape }}",
"id": "{{ entry.url | btoa }}",
"title": "{{ entry.title | escape }}{% if share %}{{ entry.shareTags }}{%endif%}",
"url": "{{ entry.url }}",
"content_text": "{{ entry.title }} {{ entry.url }}",
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"