chore: myriad feed fixes
This commit is contained in:
parent
189c5b90d5
commit
7e55338697
20 changed files with 82 additions and 59 deletions
|
@ -120,6 +120,7 @@ export default {
|
||||||
const md = mdGenerator()
|
const md = mdGenerator()
|
||||||
let excerpt = ''
|
let excerpt = ''
|
||||||
let url = ''
|
let url = ''
|
||||||
|
let author
|
||||||
let title = entry.title
|
let title = entry.title
|
||||||
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
const feedNote = '<hr/><p>This is a full text feed, but not all content can be rendered perfectly within the feed. If something looks off, feel free to <a href="https://coryd.dev">visit my site</a> for the original post.</p>'
|
||||||
|
|
||||||
|
@ -128,7 +129,13 @@ export default {
|
||||||
if (entry?.slug) url = new URL(entry.slug, BASE_URL).toString()
|
if (entry?.slug) url = new URL(entry.slug, BASE_URL).toString()
|
||||||
if (entry?.link) {
|
if (entry?.link) {
|
||||||
title = `${entry.title} via ${entry.authors.name}`
|
title = `${entry.title} via ${entry.authors.name}`
|
||||||
url = entry.link
|
url = entry.link,
|
||||||
|
author = {
|
||||||
|
name: entry.authors.name,
|
||||||
|
url: entry.authors.url,
|
||||||
|
mastodon: entry.authors?.mastodon || '',
|
||||||
|
rss: entry.authors?.rss_feed || ''
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (entry.description) excerpt = entry.description
|
if (entry.description) excerpt = entry.description
|
||||||
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}`
|
if (entry.type === 'book' || entry.type === 'movie' || entry.type === 'link') excerpt = `${entry.description}`
|
||||||
|
@ -142,7 +149,9 @@ export default {
|
||||||
content: entry.description,
|
content: entry.description,
|
||||||
date,
|
date,
|
||||||
excerpt,
|
excerpt,
|
||||||
rating: entry?.rating || ''
|
rating: entry?.rating || '',
|
||||||
|
tags: entry?.tags || '',
|
||||||
|
author
|
||||||
})
|
})
|
||||||
})
|
})
|
||||||
return posts
|
return posts
|
||||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.9.4",
|
"version": "21.10.0",
|
||||||
"lockfileVersion": 3,
|
"lockfileVersion": 3,
|
||||||
"requires": true,
|
"requires": true,
|
||||||
"packages": {
|
"packages": {
|
||||||
"": {
|
"": {
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.9.4",
|
"version": "21.10.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@cdransf/api-text": "^1.4.0",
|
"@cdransf/api-text": "^1.4.0",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "21.9.4",
|
"version": "21.10.0",
|
||||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -303,7 +303,7 @@
|
||||||
<p><a href="/feeds">View more of the feeds from my site.</a> <strong class="highlight-text">Or subscribe by adding the URL below to your feed reader of choice.</strong></p>
|
<p><a href="/feeds">View more of the feeds from my site.</a> <strong class="highlight-text">Or subscribe by adding the URL below to your feed reader of choice.</strong></p>
|
||||||
<p>
|
<p>
|
||||||
<pre class="small">
|
<pre class="small">
|
||||||
<code><xsl:value-of select="/rss/channel/feedUrl"/></code>
|
<code><xsl:value-of select="rss/channel/atom:link/@href"/></code>
|
||||||
</pre>
|
</pre>
|
||||||
</p>
|
</p>
|
||||||
<hr />
|
<hr />
|
||||||
|
|
|
@ -102,12 +102,11 @@
|
||||||
<link href="https://cdn.coryd.dev/{{ globals.apple_touch_icon }}?class=w200&v={% appVersion %}" rel="apple-touch-icon">
|
<link href="https://cdn.coryd.dev/{{ globals.apple_touch_icon }}?class=w200&v={% appVersion %}" rel="apple-touch-icon">
|
||||||
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
||||||
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
||||||
<link type="application/atom+xml" rel="alternate" title="{{ globals.site_name }}" href="https://feedpress.me/coryd">
|
<link type="application/atom+xml" rel="alternate" title="Posts / {{ globals.site_name }}" href="https://coryd.dev/feeds/posts">
|
||||||
<link rel="alternate" type="application/json" title="{{ globals.site_name }}" href="https://feedpress.me/coryd.json" />
|
<link rel="alternate" href="https://coryd.dev/feeds/links" title="Links / {{ globals.site_name }}" type="application/rss+xml">
|
||||||
<link rel="alternate" href="https://feedpress.me/coryd-links" title="{{ globals.site_name }}'s links feed" type="application/rss+xml">
|
<link rel="alternate" href="https://coryd.dev/feeds/movies" title="Movies / {{ globals.site_name }}'s movies feed" type="application/rss+xml">
|
||||||
<link rel="alternate" href="https://feedpress.me/coryd-movies" title="{{ globals.site_name }}'s movies feed" type="application/rss+xml">
|
<link rel="alternate" href="https://coryd.dev/feeds/books" title="Books / {{ globals.site_name }}" type="application/rss+xml">
|
||||||
<link rel="alternate" href="https://feedpress.me/coryd-books" title="{{ globals.site_name }}'s books feed" type="application/rss+xml">
|
<link rel="alternate" href="https://coryd.dev/feeds/all" title="All activity / {{ globals.site_name }}" type="application/rss+xml">
|
||||||
<link rel="alternate" href="https://feedpress.me/coryd-all" title="{{ globals.site_name }}'s activity feed" type="application/rss+xml">
|
|
||||||
<script defer data-domain="coryd.dev" src="/js/script.js"></script>
|
<script defer data-domain="coryd.dev" src="/js/script.js"></script>
|
||||||
<script>window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>
|
<script>window.plausible = window.plausible || function() { (window.plausible.q = window.plausible.q || []).push(arguments) }</script>
|
||||||
<script type="application/ld+json">
|
<script type="application/ld+json">
|
||||||
|
|
|
@ -1,21 +1,47 @@
|
||||||
{
|
{
|
||||||
"version": "https://jsonfeed.org/version/1",
|
"version": "https://jsonfeed.org/version/1.1",
|
||||||
"title": "{{ title | escape }}",
|
"title": "{{ title | escape }}",
|
||||||
"home_page_url": "{{ permalink | absoluteUrl: globals.url | escape }}",
|
"home_page_url": "{{ permalink | absoluteUrl | escape }}",
|
||||||
"feed_url": "{{ permalink | absoluteUrl: globals.url | escape }}.json",
|
"feed_url": "{{ permalink | absoluteUrl | escape }}.json",
|
||||||
"description": "{{ description | escape }}",
|
"description": "{{ globals.site_description | escape }}",
|
||||||
"icon": "https://cdn.coryd.dev/{{ globals.feed_image | escape }}?class=w200&v={% appVersion %}",
|
"icon": "https://cdn.coryd.dev/{{ globals.feed_image | escape }}?class=w200&v={% appVersion %}",
|
||||||
"favicon": "https://cdn.coryd.dev/{{ globals.favicon_ico | escape }}?class=w50&v={% appVersion %}",
|
"favicon": "https://cdn.coryd.dev/{{ globals.favicon_ico | escape }}?class=w50&v={% appVersion %}",
|
||||||
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "{{ globals.site_name }}",
|
||||||
|
"url": "{{ globals.url | escape }}",
|
||||||
|
"avatar": "https://cdn.coryd.dev/{{ globals.avatar | escape }}?class=w200&v={% appVersion %}"
|
||||||
|
}
|
||||||
|
],
|
||||||
"items": [
|
"items": [
|
||||||
{%- assign entries = data | normalizeEntries: 20 -%}
|
{%- assign entries = data | normalizeEntries: 20 -%}
|
||||||
{%- for entry in entries -%}
|
{%- for entry in entries -%}
|
||||||
|
{%- assign summary = entry.content | strip_html | normalize_whitespace | escape -%}
|
||||||
{
|
{
|
||||||
"id": "{{ entry.url | encodeAmp | escape }}",
|
"id": "{{ entry.url | encodeAmp | escape }}",
|
||||||
|
"title": "{{ entry.title | escape }}{% if entry.authors %} via {{ entry.authors.name | escape }}{% endif %}{% if entry.rating %} ({{ entry.rating | escape }}){% endif %}",
|
||||||
"url": "{{ entry.url | encodeAmp | escape }}",
|
"url": "{{ entry.url | encodeAmp | escape }}",
|
||||||
"title": "{{ entry.title | escape }}{%- if entry.authors %} via {{ entry.authors.name | escape }}{%- endif %}{%- if entry.rating %} ({{ entry.rating | escape }}){%- endif %}",
|
"content_html": "{{ summary }}",
|
||||||
"content_text": "{{ entry.excerpt | escape | replace: '\"', '\\"' }}",
|
"summary": "{{ summary }}",
|
||||||
"date_published": "{{ entry.date | stringToRFC822Date }}"
|
{%- if entry.author -%}
|
||||||
}{% if forloop.last == false %},{% endif %}
|
"external_url": "{{ entry.url | encodeAmp | escape }}",
|
||||||
{%- endfor %}
|
"authors": [
|
||||||
|
{
|
||||||
|
"name": "{{ entry.author.name | escape }}",
|
||||||
|
"url": "{{ entry.author.url | escape }}",
|
||||||
|
"mastodon": "{{ entry.author.mastodon | escape }}",
|
||||||
|
"rss": "{{ entry.author.feed | escape }}"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
{%- endif %}
|
||||||
|
"date_published": "{{ entry.date | stringToRFC822Date }}"{%- if entry.tags -%},
|
||||||
|
"tags": [
|
||||||
|
{%- for tag in entry.tags -%}
|
||||||
|
"{{ tag | escape }}"{%- unless forloop.last -%}, {% endunless -%}
|
||||||
|
{%- endfor -%}
|
||||||
|
]
|
||||||
|
{%- endif -%}
|
||||||
|
}{%- if forloop.last == false -%},{%- endif -%}
|
||||||
|
{%- endfor -%}
|
||||||
]
|
]
|
||||||
}
|
}
|
|
@ -2,16 +2,15 @@
|
||||||
<?xml-stylesheet href="/assets/styles/feed.xsl" type="text/xsl" ?>
|
<?xml-stylesheet href="/assets/styles/feed.xsl" type="text/xsl" ?>
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<atom:link href="{{ permalink | absoluteUrl: globals.url }}" rel="self" type="application/rss+xml" />
|
<atom:link href="{{ permalink | absoluteUrl }}" rel="self" type="application/rss+xml" />
|
||||||
<feedUrl>{{ permalink | absoluteUrl: globals.url }}</feedUrl>
|
|
||||||
{%- assign entries = data | normalizeEntries: 20 -%}
|
{%- assign entries = data | normalizeEntries: 20 -%}
|
||||||
<title><![CDATA[{{ title }}]]></title>
|
<title><![CDATA[{{ title }}]]></title>
|
||||||
<description><![CDATA[{{ description }}]]></description>
|
<description><![CDATA[{{ globals.site_description }}]]></description>
|
||||||
<link>{{ permalink | absoluteUrl: globals.url }}</link>
|
<link>{{ permalink | absoluteUrl }}</link>
|
||||||
<lastBuildDate>{{ updated | stringToRFC822Date }}</lastBuildDate>
|
<lastBuildDate>{{ updated | stringToRFC822Date }}</lastBuildDate>
|
||||||
<image>
|
<image>
|
||||||
<title><![CDATA[{{ title }}]]></title>
|
<title><![CDATA[{{ title }}]]></title>
|
||||||
<link>{{ permalink | absoluteUrl: globals.url }}</link>
|
<link>{{ permalink | absoluteUrl }}</link>
|
||||||
<url>{{ "https://cdn.coryd.dev/" | append: globals.feed_image | append: "?class=w200&v=" | append: appVersion }}</url>
|
<url>{{ "https://cdn.coryd.dev/" | append: globals.feed_image | append: "?class=w200&v=" | append: appVersion }}</url>
|
||||||
<width>144</width>
|
<width>144</width>
|
||||||
<height>144</height>
|
<height>144</height>
|
||||||
|
|
|
@ -11,7 +11,7 @@ schema: books
|
||||||
<h2 class="page-header">Currently reading</h2>
|
<h2 class="page-header">Currently reading</h2>
|
||||||
<p>Here's what I'm reading at the moment. I've finished <strong class="highlight-text">{{ currentBookCount }} books</strong> this year.</p>
|
<p>Here's what I'm reading at the moment. I've finished <strong class="highlight-text">{{ currentBookCount }} books</strong> this year.</p>
|
||||||
<p>{{ books.years | bookYearLinks }}</p>
|
<p>{{ books.years | bookYearLinks }}</p>
|
||||||
{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-books", text: "Subscribe to my books feed or follow along on this page" %}
|
{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/books", text: "Subscribe to my books feed or follow along on this page" %}
|
||||||
<hr />
|
<hr />
|
||||||
{% for book in bookData %}
|
{% for book in bookData %}
|
||||||
{% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %}
|
{% capture alt %}{{ book.title }} by {{ book.authors }}{% endcapture %}
|
||||||
|
|
|
@ -10,7 +10,7 @@ permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
|
||||||
{% if pagination.pageNumber == 0 %}
|
{% if pagination.pageNumber == 0 %}
|
||||||
<h2 class="page-header">Links</h2>
|
<h2 class="page-header">Links</h2>
|
||||||
<p>These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.</p>
|
<p>These are links I've liked or otherwise found interesting. They're all added manually, after having been read and, I suppose, properly considered.</p>
|
||||||
{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-links", text: "Subscribe to my links feed or follow along on this page" %}
|
{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/links", text: "Subscribe to my links feed or follow along on this page" %}
|
||||||
<hr />
|
<hr />
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<div class="link-grid">
|
<div class="link-grid">
|
||||||
|
|
|
@ -10,7 +10,7 @@ schema: watching
|
||||||
<h2 class="watching page-header">{{ title }}</h2>
|
<h2 class="watching page-header">{{ title }}</h2>
|
||||||
{% render "partials/media/watching/hero.liquid" movie:featuredMovie %}
|
{% render "partials/media/watching/hero.liquid" movie:featuredMovie %}
|
||||||
<p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.</p>
|
<p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.</p>
|
||||||
{% render "partials/blocks/banners/rss.liquid", url: "https://feedpress.me/coryd-movies", text: "Subscribe to my movies feed or follow along on this page" %}
|
{% render "partials/blocks/banners/rss.liquid", url: "https://coryd.dev/feeds/movies", text: "Subscribe to my movies feed or follow along on this page" %}
|
||||||
<hr />
|
<hr />
|
||||||
<h3 id="movies" class="section-header no-top-margin">
|
<h3 id="movies" class="section-header no-top-margin">
|
||||||
<a class="link-icon" href="/watching/recent/movies">
|
<a class="link-icon" href="/watching/recent/movies">
|
||||||
|
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/all.json"
|
||||||
{% render "partials/feeds/json.liquid"
|
{% render "partials/feeds/json.liquid"
|
||||||
permalink:"/feeds/all"
|
permalink:"/feeds/all"
|
||||||
title:"All activity / Cory Dransfeldt"
|
title:"All activity / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:collections.allContent
|
data:collections.allContent
|
||||||
updated:collections.allContent[0].date
|
updated:collections.allContent[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -7,8 +7,7 @@ permalink: "/feeds/books.json"
|
||||||
{% render "partials/feeds/json.liquid"
|
{% render "partials/feeds/json.liquid"
|
||||||
permalink:"/feeds/books"
|
permalink:"/feeds/books"
|
||||||
title:"Books / Cory Dransfeldt"
|
title:"Books / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:bookData
|
data:bookData
|
||||||
updated:bookData[0].date
|
updated:bookData[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/links.json"
|
||||||
{% render "partials/feeds/json.liquid"
|
{% render "partials/feeds/json.liquid"
|
||||||
permalink:"/feeds/links"
|
permalink:"/feeds/links"
|
||||||
title:"Links / Cory Dransfeldt"
|
title:"Links / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:links
|
data:links
|
||||||
updated:links[0].date
|
updated:links[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/movies.json"
|
||||||
{% render "partials/feeds/json.liquid"
|
{% render "partials/feeds/json.liquid"
|
||||||
permalink:"/feeds/movies"
|
permalink:"/feeds/movies"
|
||||||
title:"Movies / Cory Dransfeldt"
|
title:"Movies / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:movies.recentlyWatched
|
data:movies.recentlyWatched
|
||||||
updated:movies.recentlyWatched[0].lastWatched
|
updated:movies.recentlyWatched[0].lastWatched
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/posts.json"
|
||||||
{% render "partials/feeds/json.liquid"
|
{% render "partials/feeds/json.liquid"
|
||||||
permalink:"/feeds/posts"
|
permalink:"/feeds/posts"
|
||||||
title:"Posts / Cory Dransfeldt"
|
title:"Posts / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:posts
|
data:posts
|
||||||
updated:posts[0].date
|
updated:posts[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/all"
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/all"
|
permalink:"/feeds/all"
|
||||||
title:"All activity / Cory Dransfeldt"
|
title:"All activity / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:collections.allContent
|
data:collections.allContent
|
||||||
updated:collections.allContent[0].date
|
updated:collections.allContent[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -7,8 +7,7 @@ permalink: "/feeds/books"
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/books"
|
permalink:"/feeds/books"
|
||||||
title:"Books / Cory Dransfeldt"
|
title:"Books / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:bookData
|
data:bookData
|
||||||
updated:bookData[0].date
|
updated:bookData[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/links"
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/links"
|
permalink:"/feeds/links"
|
||||||
title:"Links / Cory Dransfeldt"
|
title:"Links / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:links
|
data:links
|
||||||
updated:links[0].date
|
updated:links[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/movies"
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/movies"
|
permalink:"/feeds/movies"
|
||||||
title:"Movies / Cory Dransfeldt"
|
title:"Movies / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:movies.recentlyWatched
|
data:movies.recentlyWatched
|
||||||
updated:movies.recentlyWatched[0].lastWatched
|
updated:movies.recentlyWatched[0].lastWatched
|
||||||
site:site
|
|
||||||
%}
|
%}
|
|
@ -6,8 +6,7 @@ permalink: "/feeds/posts"
|
||||||
{% render "partials/feeds/rss.liquid"
|
{% render "partials/feeds/rss.liquid"
|
||||||
permalink:"/feeds/posts"
|
permalink:"/feeds/posts"
|
||||||
title:"Posts / Cory Dransfeldt"
|
title:"Posts / Cory Dransfeldt"
|
||||||
description:globals.site_description
|
globals:globals
|
||||||
data:posts
|
data:posts
|
||||||
updated:posts[0].date
|
updated:posts[0].date
|
||||||
site:site
|
|
||||||
%}
|
%}
|
Reference in a new issue