fix: feed paths up
This commit is contained in:
parent
e8e8bea4d3
commit
27f8268e2b
3 changed files with 3 additions and 3 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "6.0.4",
|
"version": "6.0.5",
|
||||||
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
"description": "The source for my personal site. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"title": "{{ title }}",
|
"title": "{{ title }}",
|
||||||
"icon": "https://coryd.dev/static/images/avatar.webp",
|
"icon": "https://coryd.dev/static/images/avatar.webp",
|
||||||
"home_page_url": "{{ meta.url }}",
|
"home_page_url": "{{ meta.url }}",
|
||||||
"feed_url": "{{ meta.url }}{{ permalink }}",
|
"feed_url": "{{ permalink | absoluteUrl: meta.url }}",
|
||||||
"items": [{% for entry in entries limit: 20 -%}
|
"items": [{% for entry in entries limit: 20 -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.url | btoa }}",
|
"id": "{{ entry.url | btoa }}",
|
||||||
|
|
|
@ -9,7 +9,7 @@
|
||||||
<image>
|
<image>
|
||||||
<title>{{ title }}</title>
|
<title>{{ title }}</title>
|
||||||
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
<link>{{ permalink | absoluteUrl: meta.url }}</link>
|
||||||
<url>{{ meta.url }}/assets/icons/feed-icon.png</url>
|
<url>https://coryd.dev/static/images/avatar.webp</url>
|
||||||
<width>144</width>
|
<width>144</width>
|
||||||
<height>144</height>
|
<height>144</height>
|
||||||
</image>
|
</image>
|
||||||
|
|
Reference in a new issue