18 lines
No EOL
739 B
Text
18 lines
No EOL
739 B
Text
{%- assign entries = data | normalizeEntries -%}
|
|
{
|
|
"version": "https://jsonfeed.org/version/1",
|
|
"title": "{{ title }}",
|
|
"icon": "https://coryd.dev/static/images/avatar.webp",
|
|
"home_page_url": "{{ site.url }}",
|
|
"feed_url": "{{ site.url }}{{ permalink }}",
|
|
"items": [{% for entry in entries limit: 20 -%}
|
|
{
|
|
"id": "{{ entry.url | btoa }}",
|
|
"title": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %}",
|
|
"url": "{{ entry.url }}",
|
|
"content_text": "{{ entry.title | escape }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %}",
|
|
"date_published": "{{ entry.date | stringToDate | dateToRfc822 }}"
|
|
}{% if not forloop.last %},{% endif %}
|
|
{%- endfor %}
|
|
]
|
|
} |