chore: more consistent urls

This commit is contained in:
Cory Dransfeldt 2024-05-24 15:32:21 -07:00
parent 46bd6db7f1
commit e573093ff7
No known key found for this signature in database
6 changed files with 9 additions and 7 deletions

View file

@ -75,6 +75,8 @@
/articles/ / 301! /articles/ / 301!
/tags /search 301! /tags /search 301!
/referrals /save 301! /referrals /save 301!
/recent/movies /watching/recent/movies 301!
/recent/shows /watching/recent/shows 301!
/mastodon https://social.lol/@cory 301! /mastodon https://social.lol/@cory 301!
/coffee https://www.buymeacoffee.com/cory 301! /coffee https://www.buymeacoffee.com/cory 301!
/speedlify https://speedlify.coryd.dev 301! /speedlify https://speedlify.coryd.dev 301!

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "17.2.5", "version": "17.2.6",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "17.2.5", "version": "17.2.6",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"@cdransf/api-text": "^1.2.3", "@cdransf/api-text": "^1.2.3",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "17.2.5", "version": "17.2.6",
"description": "The source for my personal site. Built using 11ty.", "description": "The source for my personal site. Built using 11ty.",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -12,14 +12,14 @@ schema: watching
<p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. You can also take a look at the <a href="/watching/movies-to-watch">movies</a> and <a href="/watching/shows-to-watch">shows</a> I'm planning to watch.</p> <p>Here's all of the TV and movies I've been watching presented in what is (hopefully) an organized fashion. You can also take a look at the <a href="/watching/movies-to-watch">movies</a> and <a href="/watching/shows-to-watch">shows</a> I'm planning to watch.</p>
{% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-movies", text: "Subscribe to my movies feed or follow along on this page" %} {% render "partials/banners/rss.liquid", url: "https://feedpress.me/coryd-movies", text: "Subscribe to my movies feed or follow along on this page" %}
<hr class="large-spacing" /> <hr class="large-spacing" />
<a class="link-icon flex-centered" href="/recent/movies"> <a class="link-icon flex-centered" href="/watching/recent/movies">
<h2 id="movies" class="section-header no-top-margin flex-centered"> <h2 id="movies" class="section-header no-top-margin flex-centered">
{% tablericon "movie" "Recent movies" %} {% tablericon "movie" "Recent movies" %}
Recent movies Recent movies
</h2> </h2>
</a> </a>
{% render "partials/media/grid.liquid", data:movies.recentlyWatched, shape: "vertical", count: 6 %} {% render "partials/media/grid.liquid", data:movies.recentlyWatched, shape: "vertical", count: 6 %}
<a class="link-icon flex-centered" href="/recent/shows"> <a class="link-icon flex-centered" href="/watching/recent/shows">
<h2 id="tv" class="section-header reduced-margin flex-centered"> <h2 id="tv" class="section-header reduced-margin flex-centered">
{% tablericon "device-tv" "Recent shows" %} {% tablericon "device-tv" "Recent shows" %}
Recent shows Recent shows

View file

@ -2,7 +2,7 @@
title: Recent movies title: Recent movies
description: These are the movies I've watched recently. There are many like them, but these are mine. description: These are the movies I've watched recently. There are many like them, but these are mine.
layout: default layout: default
permalink: "/recent/movies/index.html" permalink: "/watching/recent/movies/index.html"
schema: watching schema: watching
--- ---
<a class="back-link-header link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a> <a class="back-link-header link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a>

View file

@ -2,7 +2,7 @@
title: Recent shows title: Recent shows
description: These are the shows I've watched recently. There are many like them, but these are mine. description: These are the shows I've watched recently. There are many like them, but these are mine.
layout: default layout: default
permalink: "/recent/shows/index.html" permalink: "/watching/recent/shows/index.html"
schema: watching schema: watching
--- ---
<a class="back-link-header link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a> <a class="back-link-header link-icon flex-centered" href="/watching">{% tablericon "arrow-left" "Go back" %} Go back</a>