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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

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

View file

@ -1,7 +1,7 @@
--- ---
title: Music 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. 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" updated: "now"
schema: music-index schema: music-index
--- ---

View file

@ -1,7 +1,7 @@
--- ---
title: This month 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. 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" updated: "now"
image: music.month.artists[0].image image: music.month.artists[0].image
schema: music-period schema: music-period

View file

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

View file

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

View file

@ -4,7 +4,7 @@ description: These are my favorite movies. There are many like them, but these a
pagination: pagination:
data: movies.favorites data: movies.favorites
size: 24 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 schema: favorite-movies
--- ---
<a class="icon-link" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" %} Back to watching</a> <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: pagination:
data: tv.favorites data: tv.favorites
size: 24 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 schema: favorite-shows
--- ---
<a class="icon-link" href="/watching" title="Go back to the watching index page">{% tablericon "arrow-left" %} Back to watching</a> <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 title: Currently watching
description: Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. 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" updated: "now"
schema: watching schema: watching
--- ---