feat: link authors + post links
This commit is contained in:
parent
86add0806e
commit
9e7cc103cb
6 changed files with 48 additions and 9 deletions
|
@ -145,6 +145,12 @@ export default {
|
||||||
return DateTime.now().diff(DateTime.fromJSDate(new Date(date)), 'years').years > 3;
|
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
|
// feeds
|
||||||
normalizeEntries: (entries) => {
|
normalizeEntries: (entries) => {
|
||||||
const md = markdownIt({ html: true, linkify: true })
|
const md = markdownIt({ html: true, linkify: true })
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"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.",
|
"description": "The source for my personal site, blog and portfolio. Built using 11ty and hosted on Netlify.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
8
src/_data/linkPosts.js
Normal file
8
src/_data/linkPosts.js
Normal file
|
@ -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
|
||||||
|
}
|
|
@ -19,6 +19,7 @@ export default async function () {
|
||||||
url: link['source_url'],
|
url: link['source_url'],
|
||||||
tags: [...new Set(Object.keys(link['tags']))],
|
tags: [...new Set(Object.keys(link['tags']))],
|
||||||
date: `${link['updated_at'] || link['created_at']}`,
|
date: `${link['updated_at'] || link['created_at']}`,
|
||||||
|
author: link['author'],
|
||||||
summary: link['summary'],
|
summary: link['summary'],
|
||||||
note: link['notes'],
|
note: link['notes'],
|
||||||
description: `${link['summary']}<br/><br/>`,
|
description: `${link['summary']}<br/><br/>`,
|
||||||
|
|
|
@ -143,10 +143,10 @@ nav svg {
|
||||||
margin-top: .125rem;
|
margin-top: .125rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
:is(nav a:hover, nav a:active, nav a:focus) svg,
|
:is(a:hover, a:active, a:focus) svg,
|
||||||
nav svg:hover,
|
a svg:hover,
|
||||||
nav svg:active,
|
a svg:active,
|
||||||
nav svg:focus {
|
a svg:focus {
|
||||||
stroke-width: var(--stroke-width-bold);
|
stroke-width: var(--stroke-width-bold);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -293,12 +293,18 @@ code {
|
||||||
/* articles */
|
/* articles */
|
||||||
article h2 {
|
article h2 {
|
||||||
line-height: var(--line-height-2xl);
|
line-height: var(--line-height-2xl);
|
||||||
margin: 0;
|
margin: 0 0 .25rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
article [rel="author"],
|
||||||
article time {
|
article time {
|
||||||
font-size: var(--font-size-sm);
|
font-size: var(--font-size-sm);
|
||||||
line-height: var(--line-height-sm);
|
line-height: var(--line-height-sm);
|
||||||
|
margin-right: .25rem;
|
||||||
|
}
|
||||||
|
|
||||||
|
article .meta > * {
|
||||||
|
height: 1rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* icons */
|
/* icons */
|
||||||
|
@ -306,6 +312,11 @@ svg {
|
||||||
stroke-width: var(--stroke-width-default);
|
stroke-width: var(--stroke-width-default);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.icon--small > svg {
|
||||||
|
width: 1rem;
|
||||||
|
height: 1rem;
|
||||||
|
}
|
||||||
|
|
||||||
.icon--bold > svg {
|
.icon--bold > svg {
|
||||||
stroke-width: var(--stroke-width-bold);
|
stroke-width: var(--stroke-width-bold);
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,13 +6,26 @@ pagination:
|
||||||
size: 8
|
size: 8
|
||||||
---
|
---
|
||||||
{% for link in pagination.items %}
|
{% for link in pagination.items %}
|
||||||
|
{%- assign shareLink = link.url | findPost: linkPosts -%}
|
||||||
<article class="h-entry" data-pagefind-body>
|
<article class="h-entry" data-pagefind-body>
|
||||||
<a class="no-underline" href="{{ link.url }}">
|
<a class="no-underline" href="{{ link.url }}">
|
||||||
<h2 class="flex--centered" data-pagefind-meta="title">{{ link.title }}</h2>
|
<h2 class="flex--centered" data-pagefind-meta="title">{{ link.title }}</h2>
|
||||||
</a>
|
</a>
|
||||||
|
<div class="flex--centered meta">
|
||||||
|
{%- if link.author %}
|
||||||
|
<span rel="author">
|
||||||
|
{{ link.author }} •
|
||||||
|
</span>
|
||||||
|
{% endif -%}
|
||||||
<time class="dt-published" datetime="{{ link.date }}">
|
<time class="dt-published" datetime="{{ link.date }}">
|
||||||
{{ link.date | date: "%m.%Y" }}
|
{{ link.date | date: "%m.%Y" }}
|
||||||
</time>
|
</time>
|
||||||
|
{%- if shareLink %}
|
||||||
|
<a class="brand-mastodon icon--small" href="{{ shareLink }}">
|
||||||
|
{% tablericon "brand-mastodon" "Mastodon post" %}
|
||||||
|
</a>
|
||||||
|
{% endif -%}
|
||||||
|
</div>
|
||||||
<blockquote class="p-summary">{{ link.summary }}</blockquote>
|
<blockquote class="p-summary">{{ link.summary }}</blockquote>
|
||||||
{%- if link.note %}
|
{%- if link.note %}
|
||||||
<p>{{ link.note | markdown }}</p>
|
<p>{{ link.note | markdown }}</p>
|
||||||
|
|
Reference in a new issue