chore: permalink consistency

This commit is contained in:
Cory Dransfeldt 2024-10-28 12:07:15 -07:00
parent 327be80b79
commit d813bd505f
No known key found for this signature in database
14 changed files with 17 additions and 18 deletions

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{
"name": "coryd.dev",
"version": "2.3.2",
"version": "2.3.3",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
"version": "2.3.2",
"version": "2.3.3",
"license": "MIT",
"dependencies": {
"@cdransf/api-text": "^1.7.0",
@ -1778,9 +1778,9 @@
"license": "MIT"
},
"node_modules/electron-to-chromium": {
"version": "1.5.47",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.47.tgz",
"integrity": "sha512-zS5Yer0MOYw4rtK2iq43cJagHZ8sXN0jDHDKzB+86gSBSAI4v07S97mcq+Gs2vclAxSh1j7vOAHxSVgduiiuVQ==",
"version": "1.5.48",
"resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.48.tgz",
"integrity": "sha512-FXULnNK7ACNI9MTMOVAzUGiz/YrK9Kcb0s/JT4aJgsam7Eh6XYe7Y6q95lPq+VdBe1DpT2eTnfXFtnuPGCks4w==",
"dev": true,
"license": "ISC"
},

View file

@ -1,6 +1,6 @@
{
"name": "coryd.dev",
"version": "2.3.2",
"version": "2.3.3",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {

View file

@ -95,6 +95,7 @@
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 6;
line-clamp: 6;
text-overflow: ellipsis;
overflow: hidden;
}

View file

@ -31,8 +31,6 @@ const fetchAllMovies = async () => {
};
export default async function () {
const year = DateTime.now().year;
try {
const movies = await fetchAllMovies();
const favoriteMovies = movies.filter((movie) => movie["favorite"]);

View file

@ -1,7 +1,7 @@
---
title: Currently reading
description: Here's what I'm reading at the moment.
permalink: "/books/index.html"
permalink: "/books.html"
updated: "now"
schema: books
---

View file

@ -4,7 +4,7 @@ description: These are links I've liked or otherwise found interesting. They're
pagination:
data: links
size: 30
permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
permalink: "/links/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}.html"
---
{% if pagination.pageNumber == 0 %}
<h2>Links</h2>

View file

@ -4,7 +4,7 @@ description: These are concerts I've attended (not all of them — just the ones
pagination:
data: concerts
size: 30
permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
permalink: "/music/concerts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}.html"
---
{%- if pagination.pageNumber == 0 -%}
<h2>Concerts</h2>

View file

@ -1,7 +1,7 @@
---
title: Music
description: This is everything I've been listening to recently — it's collected in a database as I listen to it and displayed here.
permalink: "/music/index.html"
permalink: "/music.html"
updated: "now"
schema: music-index
---

View file

@ -1,7 +1,7 @@
---
title: This month
description: This is everything I've been listening to this month — it's collected in a database as I listen to it and displayed here.
permalink: "/music/this-month/index.html"
permalink: "/music/this-month.html"
updated: "now"
image: music.month.artists[0].image
schema: music-period

View file

@ -2,7 +2,7 @@
title: All posts
pagination:
data: posts
size: 8
size: 15
permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
---
{% for post in pagination.items %}

View file

@ -3,7 +3,7 @@ pagination:
data: posts
size: 1
alias: post
permalink: "{{ post.url }}/index.html"
permalink: "{{ post.url }}.html"
schema: blog
---
<article class="standalone">

View file

@ -4,7 +4,7 @@ description: These are my favorite movies. There are many like them, but these a
pagination:
data: movies.favorites
size: 24
permalink: "/watching/favorite-movies/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
permalink: "/watching/favorite-movies/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}.html"
schema: favorite-movies
---
<a class="icon-link" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" %} Back to watching</a>

View file

@ -4,7 +4,7 @@ description: These are my favorite shows. There are many like them, but these ar
pagination:
data: tv.favorites
size: 24
permalink: "/watching/favorite-shows/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}index.html"
permalink: "/watching/favorite-shows/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}/{% endif %}.html"
schema: favorite-shows
---
<a class="icon-link" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" %} Back to watching</a>

View file

@ -1,7 +1,7 @@
---
title: Currently watching
description: Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion.
permalink: "/watching/index.html"
permalink: "/watching.html"
updated: "now"
schema: watching
---