From d813bd505f1e8950fe916b2c0660d8a3affb3567 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 28 Oct 2024 12:07:15 -0700 Subject: [PATCH] chore: permalink consistency --- package-lock.json | 10 +++++----- package.json | 2 +- src/assets/styles/components/media-grid.css | 1 + src/data/movies.js | 2 -- src/pages/books/index.html | 2 +- src/pages/links.html | 2 +- src/pages/music/concerts.html | 2 +- src/pages/music/index.html | 2 +- src/pages/music/this-month.html | 2 +- src/pages/posts/index.html | 2 +- src/pages/posts/post.html | 2 +- src/pages/watching/favorites/movies.html | 2 +- src/pages/watching/favorites/shows.html | 2 +- src/pages/watching/index.html | 2 +- 14 files changed, 17 insertions(+), 18 deletions(-) diff --git a/package-lock.json b/package-lock.json index b80bd2b6..8c8ede6a 100644 --- a/package-lock.json +++ b/package-lock.json @@ -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" }, diff --git a/package.json b/package.json index 01f44c8a..e8e0cdd5 100644 --- a/package.json +++ b/package.json @@ -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": { diff --git a/src/assets/styles/components/media-grid.css b/src/assets/styles/components/media-grid.css index b529f944..831397e3 100644 --- a/src/assets/styles/components/media-grid.css +++ b/src/assets/styles/components/media-grid.css @@ -95,6 +95,7 @@ display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 6; + line-clamp: 6; text-overflow: ellipsis; overflow: hidden; } diff --git a/src/data/movies.js b/src/data/movies.js index d48a581f..6479af57 100644 --- a/src/data/movies.js +++ b/src/data/movies.js @@ -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"]); diff --git a/src/pages/books/index.html b/src/pages/books/index.html index 11d8b8f5..31312753 100644 --- a/src/pages/books/index.html +++ b/src/pages/books/index.html @@ -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 --- diff --git a/src/pages/links.html b/src/pages/links.html index 6c200d93..21a392f0 100644 --- a/src/pages/links.html +++ b/src/pages/links.html @@ -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 %}

Links

diff --git a/src/pages/music/concerts.html b/src/pages/music/concerts.html index 49061512..447de478 100644 --- a/src/pages/music/concerts.html +++ b/src/pages/music/concerts.html @@ -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 -%}

Concerts

diff --git a/src/pages/music/index.html b/src/pages/music/index.html index 09a64d7e..ca884c1a 100644 --- a/src/pages/music/index.html +++ b/src/pages/music/index.html @@ -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 --- diff --git a/src/pages/music/this-month.html b/src/pages/music/this-month.html index e2c6669d..b85dbd40 100644 --- a/src/pages/music/this-month.html +++ b/src/pages/music/this-month.html @@ -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 diff --git a/src/pages/posts/index.html b/src/pages/posts/index.html index 27ee7523..b5db24b2 100644 --- a/src/pages/posts/index.html +++ b/src/pages/posts/index.html @@ -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 %} diff --git a/src/pages/posts/post.html b/src/pages/posts/post.html index b20127cd..c525a797 100644 --- a/src/pages/posts/post.html +++ b/src/pages/posts/post.html @@ -3,7 +3,7 @@ pagination: data: posts size: 1 alias: post -permalink: "{{ post.url }}/index.html" +permalink: "{{ post.url }}.html" schema: blog ---
diff --git a/src/pages/watching/favorites/movies.html b/src/pages/watching/favorites/movies.html index c2026457..5528bc42 100644 --- a/src/pages/watching/favorites/movies.html +++ b/src/pages/watching/favorites/movies.html @@ -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 --- {% tablericon "arrow-left" %} Back to watching diff --git a/src/pages/watching/favorites/shows.html b/src/pages/watching/favorites/shows.html index 2f46ea9e..c022ac22 100644 --- a/src/pages/watching/favorites/shows.html +++ b/src/pages/watching/favorites/shows.html @@ -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 --- {% tablericon "arrow-left" %} Back to watching diff --git a/src/pages/watching/index.html b/src/pages/watching/index.html index e89d4faa..523eaa98 100644 --- a/src/pages/watching/index.html +++ b/src/pages/watching/index.html @@ -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 ---