chore: drop separate links feed
This commit is contained in:
parent
3df15e7cd7
commit
b5d3e22f11
4 changed files with 2 additions and 37 deletions
19
.eleventy.js
19
.eleventy.js
|
@ -79,25 +79,6 @@ module.exports = function (eleventyConfig) {
|
|||
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) => {
|
||||
const tags = {}
|
||||
collection.getAll().forEach((item) => {
|
||||
|
|
|
@ -17,7 +17,7 @@ module.exports = {
|
|||
if (entry.data?.post_excerpt) excerpt = md.render(entry.data.post_excerpt)
|
||||
|
||||
// if there's a valid entry return a normalized object
|
||||
if (entry && !entry.data?.link) {
|
||||
if (entry)
|
||||
posts.push({
|
||||
title: entry.data?.title || entry.title,
|
||||
url: entry.url.includes('http') ? entry.url : new URL(entry.url, BASE_URL).toString(),
|
||||
|
@ -25,7 +25,6 @@ module.exports = {
|
|||
date,
|
||||
excerpt,
|
||||
})
|
||||
}
|
||||
})
|
||||
return posts
|
||||
},
|
||||
|
|
|
@ -24,9 +24,8 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m
|
|||
{{ title }}
|
||||
</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.
|
||||
- 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.
|
||||
- Follow ([RSS](https://feedpress.me/coryd-follow) • [JSON](https://feedpress.me/coryd-follow.json)): my activity from around the web.
|
||||
|
|
|
@ -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
|
||||
%}
|
Reference in a new issue