chore: drop separate links feed

This commit is contained in:
Cory Dransfeldt 2023-09-27 08:34:06 -07:00
parent 3df15e7cd7
commit b5d3e22f11
No known key found for this signature in database
4 changed files with 2 additions and 37 deletions

View file

@ -79,25 +79,6 @@ module.exports = function (eleventyConfig) {
return Array.from(tagsSet).sort() return Array.from(tagsSet).sort()
}) })
eleventyConfig.addCollection('links', (collection) => {
const links = []
collection.getAll().forEach((item) => {
if (item.data.collections.posts) {
item.data.collections.posts.forEach((post) => {
const url = post.data.link
if (url?.includes('http') && !links.find((link) => link.title === post.data.title))
links.push({
url: post.data.link,
title: post.data.title,
date: post.data.date,
description: post.data.post_excerpt ? md.render(post.data.post_excerpt) : '',
})
})
}
})
return links
})
eleventyConfig.addCollection('tagMap', (collection) => { eleventyConfig.addCollection('tagMap', (collection) => {
const tags = {} const tags = {}
collection.getAll().forEach((item) => { collection.getAll().forEach((item) => {

View file

@ -17,7 +17,7 @@ module.exports = {
if (entry.data?.post_excerpt) excerpt = md.render(entry.data.post_excerpt) if (entry.data?.post_excerpt) excerpt = md.render(entry.data.post_excerpt)
// if there's a valid entry return a normalized object // if there's a valid entry return a normalized object
if (entry && !entry.data?.link) { if (entry)
posts.push({ posts.push({
title: entry.data?.title || entry.title, title: entry.data?.title || entry.title,
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(), url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
@ -25,7 +25,6 @@ module.exports = {
date, date,
excerpt, excerpt,
}) })
}
}) })
return posts return posts
}, },

View file

@ -24,9 +24,8 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m
{{ title }} {{ title }}
</h2> </h2>
These are web feeds, also known as [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. Subscribe by copying the URL from the address bar into your newsreader. Visit [About Feeds](https://aboutfeeds.com/) to get started with newsreaders and subscribing. It's free. These are web feeds, also known as [RSS](https://en.wikipedia.org/wiki/RSS) or [Atom](https://en.wikipedia.org/wiki/Atom_(web_standard)) feeds. Subscribe by copying the URL from the address bar into your newsreader. Visit [About Feeds](https://aboutfeeds.com) to get started with newsreaders and subscribing. It's free.
- Posts ([RSS](https://feedpress.me/coryd) • [JSON](https://feedpress.me/coryd.json)): posts from my site. - Posts ([RSS](https://feedpress.me/coryd) • [JSON](https://feedpress.me/coryd.json)): posts from my site.
- Links ([RSS](https://feedpress.me/coryd-links) • [JSON](https://feedpress.me/coryd-links.json)): links I've shared.
- Books ([RSS](https://feedpress.me/coryd-books.xml) • [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading. - Books ([RSS](https://feedpress.me/coryd-books.xml) • [JSON](https://feedpress.me/coryd-books.json)): books I'm currently reading.
- Follow ([RSS](https://feedpress.me/coryd-follow) • [JSON](https://feedpress.me/coryd-follow.json)): my activity from around the web. - Follow ([RSS](https://feedpress.me/coryd-follow) • [JSON](https://feedpress.me/coryd-follow.json)): my activity from around the web.

View file

@ -1,14 +0,0 @@
---
layout: null
eleventyExcludeFromCollections: true
permalink: /feeds/links
---
{%- assign links = collections.links | reverse -%}
{% render "partials/feeds/rss.liquid"
permalink:"/feeds/links"
title:"Links • Cory Dransfeldt"
description:"Links I've shared."
data:links
updated:links[0].date
site:site
%}