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 %} -