From 04788dc1714974b56d2c0731ebd15d9356fafd1a Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Tue, 31 Oct 2023 10:51:21 -0700 Subject: [PATCH] chore: restore links --- .eleventy.js | 4 +++- _redirects | 2 ++ src/_data/json/links.json | 4 ++-- src/_data/links.js | 5 +++++ src/_includes/now.liquid | 1 + src/_includes/partials/now/links.liquid | 15 +++++++++++++++ src/feeds/links.liquid | 13 +++++++++++++ 7 files changed, 41 insertions(+), 3 deletions(-) create mode 100644 src/_data/links.js create mode 100644 src/_includes/partials/now/links.liquid create mode 100644 src/feeds/links.liquid diff --git a/.eleventy.js b/.eleventy.js index 63417b22..07888987 100644 --- a/.eleventy.js +++ b/.eleventy.js @@ -160,7 +160,9 @@ module.exports = function (eleventyConfig) { } if (item.data.links) { item.data.links.forEach((link) => { - const tagString = [...new Set(link.tags.map((tag) => tagAliases[tag.toLowerCase()]))] + const tagString = [ + ...new Set(link.tags.split(',').map((tag) => tagAliases[tag.toLowerCase()])), + ] .join(' ') .trim() if (tagString) tags[link.url] = tagString diff --git a/_redirects b/_redirects index 1943a00f..626a2bf9 100644 --- a/_redirects +++ b/_redirects @@ -52,6 +52,8 @@ https://cdme.netlify.app https://coryd.dev 301! /feed.json https://feedpress.me/coryd.json /books.xml https://feedpress.me/coryd-books /books.json https://feedpress.me/coryd-books.json +/links.xml https://feedpress.me/coryd-links +/links.json https://feedpress.me/coryd-links.json /follow.xml https://feedpress.me/coryd-follow /follow.json https://feedpress.me/coryd-follow.json diff --git a/src/_data/json/links.json b/src/_data/json/links.json index b7c52629..2b6a8d73 100644 --- a/src/_data/json/links.json +++ b/src/_data/json/links.json @@ -5,14 +5,14 @@ "tags": "development", "title": "What Happened to Separation of Concerns in Frontend Development", "id": "https://meiert.com/en/blog/what-happened-to-separation-of-concerns/", - "link": "https://meiert.com/en/blog/what-happened-to-separation-of-concerns/" + "url": "https://meiert.com/en/blog/what-happened-to-separation-of-concerns/" }, { "date": "Tue, 31 Oct 2023 10:27:36 -0700", "tags": "development", "title": "It's 2023, here is why your web design sucks.", "id": "https://heather-buchel.com/blog/2023/10/why-your-web-design-sucks/", - "link": "https://heather-buchel.com/blog/2023/10/why-your-web-design-sucks/" + "url": "https://heather-buchel.com/blog/2023/10/why-your-web-design-sucks/" } ] } diff --git a/src/_data/links.js b/src/_data/links.js new file mode 100644 index 00000000..f925927e --- /dev/null +++ b/src/_data/links.js @@ -0,0 +1,5 @@ +const links = require('../_data/json/links.json') + +module.exports = async function () { + return links.links +} diff --git a/src/_includes/now.liquid b/src/_includes/now.liquid index 7f4c5cf3..befb6f6f 100644 --- a/src/_includes/now.liquid +++ b/src/_includes/now.liquid @@ -7,6 +7,7 @@ layout: main {% render "partials/now/media-grid.liquid", data:music.albums, icon: "vinyl", title: "Albums", shape: "square", count: 8 %} {% render "partials/now/albumReleases.liquid", albumReleases:albumReleases %} {% render "partials/now/media-grid.liquid", data:books, icon: "books", title: "Books", shape: "vertical", count: 6 %} +{% render "partials/now/links.liquid", links:links %} {% render "partials/now/media-grid.liquid", data:movies, icon: "movie", title: "Movies", shape: "vertical", count: 6 %} {% render "partials/now/media-grid.liquid", data:tv, icon: "device-tv", title: "TV", shape: "vertical", count: 6 %}

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

+ {% tablericon "link" "Links" %} + Links +

+ +{% endif %} \ No newline at end of file diff --git a/src/feeds/links.liquid b/src/feeds/links.liquid new file mode 100644 index 00000000..a9a7318a --- /dev/null +++ b/src/feeds/links.liquid @@ -0,0 +1,13 @@ +--- +layout: null +eleventyExcludeFromCollections: true +permalink: /feeds/links +--- +{% render "partials/feeds/rss.liquid" + permalink:"/feeds/links" + title:"Links • Cory Dransfeldt" + description:"Links I've liked." + data:links + updated:links[0].date + site:site +%} \ No newline at end of file