diff --git a/.eleventy.js b/.eleventy.js index 0e81a1e1..8f91ab83 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -92,14 +92,6 @@ module.exports = function (eleventyConfig) { if (tagString) tags[url] = tagString }) } - if (item.data.links) { - item.data.links.forEach((link) => { - const tagString = [...new Set(link.tags.map((tag) => tagAliases[tag.toLowerCase()]))] - .join(' ') - .trim() - if (tagString) tags[link.url] = tagString - }) - } }) return tags }) diff --git a/.env b/.env index 250e80e3..82c16002 100644 --- a/.env +++ b/.env @@ -1,7 +1,6 @@ API_KEY_LASTFM= API_KEY_TRAKT= API_KEY_WEBMENTIONS_CORYD_DEV= -API_TOKEN_READWISE= SITE_ID_CLICKY= SITE_KEY_CLICKY= SECRET_FEED_ALBUM_RELEASES= diff --git a/_redirects b/_redirects index a15e5119..d1eb78fc 100644 --- a/_redirects +++ b/_redirects @@ -50,8 +50,6 @@ https://cdme.netlify.app https://coryd.dev 301! /feeds/all.xml https://feedpress.me/coryd 301! /feed.xml https://feedpress.me/coryd /feed.json https://feedpress.me/coryd.json -/links.xml https://feedpress.me/coryd-links -/links.json https://feedpress.me/coryd-links.json /books.xml https://feedpress.me/coryd-books /books.json https://feedpress.me/coryd-books.json /follow.xml https://feedpress.me/coryd-follow diff --git a/src/_data/follow.js b/src/_data/follow.js index 220c7f26..374de8b6 100644 --- a/src/_data/follow.js +++ b/src/_data/follow.js @@ -2,7 +2,6 @@ module.exports = async function () { const { ActivityFeed } = await import('@11ty/eleventy-activity-feed') const feed = new ActivityFeed() feed.addSource('atom', '📝', 'https://coryd.dev/feeds/posts') - feed.addSource('atom', '🔗', 'https://coryd.dev/feeds/links') feed.addSource('rss', '🎥', 'https://letterboxd.com/cdme/rss') feed.addSource('atom', '📖', 'https://coryd.dev/feeds/books') const entries = feed.getEntries().catch() diff --git a/src/_data/links.js b/src/_data/links.js deleted file mode 100644 index 1fcb359d..00000000 --- a/src/_data/links.js +++ /dev/null @@ -1,27 +0,0 @@ -const EleventyFetch = require('@11ty/eleventy-fetch') - -module.exports = async function () { - const READWISE_TOKEN = process.env.API_TOKEN_READWISE - const headers = { Authorization: `Token ${READWISE_TOKEN}` } - const url = 'https://readwise.io/api/v3/list?category=article' - const res = EleventyFetch(url, { - duration: '1h', - type: 'json', - fetchOptions: { headers }, - }) - const data = await res - const links = data['results'].filter((result) => Object.keys(result.tags).includes('share')) - return links.map((link) => { - return { - title: link['title'], - url: link['source_url'], - date: link['published_date'] - ? new Date(link['published_date']) - : new Date(link['created_at']), - summary: link['summary'], - notes: link['notes'], - tags: Object.keys(link.tags).filter((tag) => tag !== 'share' && tag !== 'shortlist'), - id: btoa(link['source_url']), - } - }) -} diff --git a/src/_includes/now.liquid b/src/_includes/now.liquid index d34a09de..2c1f8f7a 100644 --- a/src/_includes/now.liquid +++ b/src/_includes/now.liquid @@ -7,7 +7,6 @@ layout: main {% render "partials/now/media-grid.liquid", data:albums, icon: "vinyl", title: "Albums", shape: "square", count: 8, loading: 'lazy' %} {% render "partials/now/albumReleases.liquid", albumReleases:albumReleases %} {% render "partials/now/media-grid.liquid", data:books, icon: "books", title: "Books", shape: "vertical", count: 6, loading: 'lazy' %} -{% render "partials/now/links.liquid", links:links %} {% render "partials/now/media-grid.liquid", data:movies, icon: "movie", title: "Movies", shape: "vertical", count: 6, loading: 'lazy' %} {% render "partials/now/media-grid.liquid", data:tv, icon: "device-tv", title: "TV", shape: "vertical", count: 6, loading: 'lazy' %}

This is a diff --git a/src/_includes/partials/now/links.liquid b/src/_includes/partials/now/links.liquid deleted file mode 100644 index e8551e38..00000000 --- a/src/_includes/partials/now/links.liquid +++ /dev/null @@ -1,15 +0,0 @@ -{% if links.size > 0 %} -

- {% tablericon "link" "Links" %} -
Links
-

- -{% endif %} \ No newline at end of file diff --git a/src/feeds.md b/src/feeds.md index b46abcbe..44d252f9 100644 --- a/src/feeds.md +++ b/src/feeds.md @@ -25,6 +25,5 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m - 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 liked. - 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. diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid deleted file mode 100644 index d3d98a24..00000000 --- a/src/feeds/links.liquid +++ /dev/null @@ -1,12 +0,0 @@ ---- -layout: null -permalink: /feeds/links ---- -{% render "partials/feeds/content.liquid" - permalink:'/feeds/links' - title:'Links • Cory Dransfeldt' - data:links - updated:links[0].date - site:site - eleventy:eleventy -%} \ No newline at end of file diff --git a/src/uses.md b/src/uses.md index 7700f340..9d2e904d 100644 --- a/src/uses.md +++ b/src/uses.md @@ -37,10 +37,10 @@ Software and services that I use for work and my own enjoyment.

macOS + iOS

-- [Orion](https://browser.kagi.com) - [Obsidian](https://obsidian.md) - [Todoist](https://todoist.com) - [Mona](https://mastodon.social/@MonaApp) +- [NetNewsWire](https://netnewswire.com) - [Parcel](https://parcelapp.net)

iOS

@@ -78,7 +78,7 @@ Software and services that I use for work and my own enjoyment. - Feedpress - [Mullvad](https://mullvad.net) - [Kagi](https://kagi.com) -- [Reader](https://readwise.io/read) +- [Feedbin](https://feedbin.com) - [forwardemail.net](https://forwardemail.net) - [1Password](https://1password.com) - [Spotify](https://spotify.com)