chore: restore links

This commit is contained in:
Cory Dransfeldt 2023-10-31 10:51:21 -07:00
parent 7098edb679
commit 04788dc171
7 changed files with 41 additions and 3 deletions

View file

@ -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

View file

@ -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

View file

@ -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/"
}
]
}

5
src/_data/links.js Normal file
View file

@ -0,0 +1,5 @@
const links = require('../_data/json/links.json')
module.exports = async function () {
return links.links
}

View file

@ -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 %}
<p class="text-xs text-center pt-6">This is a

View file

@ -0,0 +1,15 @@
{% if links.size > 0 %}
<h2 class="[&>svg]:h-5 [&>svg]:w-5 [&>svg]:md:h-7 [&>svg]:md:w-7 [&>svg]:-mt-1 [&>svg]:md:-mt-1.5 [&>svg]:inline icon--bold m-0 text-xl font-black leading-tight tracking-normal dark:text-gray-200 md:text-2xl mt-8 mb-4">
{% tablericon "link" "Links" %}
Links
</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 %}

13
src/feeds/links.liquid Normal file
View file

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