chore: drop links
This commit is contained in:
parent
457619ea2c
commit
d68db1993c
10 changed files with 2 additions and 70 deletions
|
@ -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
|
||||
})
|
||||
|
|
1
.env
1
.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=
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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()
|
||||
|
|
|
@ -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']),
|
||||
}
|
||||
})
|
||||
}
|
|
@ -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' %}
|
||||
<p class="text-xs text-center pt-6">This is a
|
||||
|
|
|
@ -1,15 +0,0 @@
|
|||
{% if links.size > 0 %}
|
||||
<h2 class="icon--bold m-0 text-xl flex flex-row items-center font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4 icon--28">
|
||||
{% tablericon "link" "Links" %}
|
||||
<div class="ml-1">Links</div>
|
||||
</h2>
|
||||
<ul class="list-inside list-disc pl-5 md:pl-10">
|
||||
{% for link in links limit: 5 %}
|
||||
<li class="mt-1.5 mb-2">
|
||||
<a href="{{link.url}}" title="{{link.title | escape}}">
|
||||
{{ link.title }}
|
||||
</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endif %}
|
|
@ -25,6 +25,5 @@ class="m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 m
|
|||
</h2>
|
||||
|
||||
- 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.
|
||||
|
|
|
@ -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
|
||||
%}
|
|
@ -37,10 +37,10 @@ Software and services that I use for work and my own enjoyment.
|
|||
|
||||
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">macOS + iOS</h3>
|
||||
|
||||
- [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)
|
||||
|
||||
<h3 className="text-xl font-extrabold leading-9 tracking-tight text-gray-900 dark:text-gray-100 sm:text-2xl sm:leading-10 md:text-4xl md:leading-14">iOS</h3>
|
||||
|
@ -78,7 +78,7 @@ Software and services that I use for work and my own enjoyment.
|
|||
- <a onclick="clicky.goal('Referral: Feedpress')" href="https://feedpress.com/?affid=34370">Feedpress</a>
|
||||
- [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)
|
||||
|
|
Reference in a new issue