fix: delete template
This commit is contained in:
parent
f55eced896
commit
652e29aaab
1 changed files with 0 additions and 18 deletions
|
@ -1,18 +0,0 @@
|
||||||
{%- assign entries = data | normalizeEntries -%}
|
|
||||||
{
|
|
||||||
"version": "https://jsonfeed.org/version/1",
|
|
||||||
"title": "{{ title }}",
|
|
||||||
"icon": "https://coryd.dev/assets/img/avatar.png",
|
|
||||||
"home_page_url": "{{ meta.url }}",
|
|
||||||
"feed_url": "{{ permalink | absoluteUrl: meta.url }}",
|
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
|
||||||
{
|
|
||||||
"id": "{{ entry.url | btoa }}",
|
|
||||||
"title": "{{ entry.title | replaceQuotes }}",
|
|
||||||
"url": "{{ entry.url }}",
|
|
||||||
"content_text": "{{ entry.title | replaceQuotes }}{% if tagMap %} {{ entry.url | tagLookup: tagMap }}{% endif %} {{ entry.url }}",
|
|
||||||
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
|
||||||
}{% if not forloop.last %},{% endif %}
|
|
||||||
{%- endfor %}
|
|
||||||
]
|
|
||||||
}
|
|
Reference in a new issue