diff --git a/config/filters/index.js b/config/filters/index.js index 2d7d4328..d344f3fc 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -145,6 +145,12 @@ export default { return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3; }, + // links + findPost: (url, posts) => { + if (!url || !posts) return null; + return posts[url]?.toots?.[0] || null; + }, + // feeds normalizeEntries: (entries) => { const md = markdownIt({ html: true, linkify: true }) diff --git a/package.json b/package.json index b54c0612..9bbac24a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "4.6.1", + "version": "4.7.0", "description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.", "type": "module", "scripts": { diff --git a/src/_data/linkPosts.js b/src/_data/linkPosts.js new file mode 100644 index 00000000..b1a31f0e --- /dev/null +++ b/src/_data/linkPosts.js @@ -0,0 +1,8 @@ +import { createRequire } from 'module' + +const require = createRequire(import.meta.url) +const mastodonCache = require('../../cache/jsonfeed-to-mastodon.json') + +export default async function () { + return mastodonCache +} \ No newline at end of file diff --git a/src/_data/links.js b/src/_data/links.js index bf45c246..ea3c20c3 100644 --- a/src/_data/links.js +++ b/src/_data/links.js @@ -19,6 +19,7 @@ export default async function () { url: link['source_url'], tags: [...new Set(Object.keys(link['tags']))], date: `${link['updated_at'] || link['created_at']}`, + author: link['author'], summary: link['summary'], note: link['notes'], description: `${link['summary']}

`, diff --git a/src/assets/styles/index.css b/src/assets/styles/index.css index 0fec88a9..9af3fe34 100644 --- a/src/assets/styles/index.css +++ b/src/assets/styles/index.css @@ -143,10 +143,10 @@ nav svg { margin-top: .125rem; } -:is(nav a:hover, nav a:active, nav a:focus) svg, -nav svg:hover, -nav svg:active, -nav svg:focus { +:is(a:hover, a:active, a:focus) svg, +a svg:hover, +a svg:active, +a svg:focus { stroke-width: var(--stroke-width-bold); } @@ -293,12 +293,18 @@ code { /* articles */ article h2 { line-height: var(--line-height-2xl); - margin: 0; + margin: 0 0 .25rem; } +article [rel="author"], article time { font-size: var(--font-size-sm); line-height: var(--line-height-sm); + margin-right: .25rem; +} + +article .meta > * { + height: 1rem; } /* icons */ @@ -306,6 +312,11 @@ svg { stroke-width: var(--stroke-width-default); } +.icon--small > svg { + width: 1rem; + height: 1rem; +} + .icon--bold > svg { stroke-width: var(--stroke-width-bold); } diff --git a/src/links.html b/src/links.html index 3ac18cca..13fe3982 100644 --- a/src/links.html +++ b/src/links.html @@ -6,13 +6,26 @@ pagination: size: 8 --- {% for link in pagination.items %} +{%- assign shareLink = link.url | findPost: linkPosts -%}

{{ link.title }}

- +
+ {%- if link.author %} + + {% endif -%} + + {%- if shareLink %} + + {% tablericon "brand-mastodon" "Mastodon post" %} + + {% endif -%} +
{{ link.summary }}
{%- if link.note %}

{{ link.note | markdown }}