From e49c99a3d8dc4bd39e7d5a138089f5e81193abf5 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Fri, 14 Jun 2024 15:58:03 -0700 Subject: [PATCH] chore: links + styles --- package-lock.json | 4 ++-- package.json | 2 +- src/assets/styles/base/index.css | 14 ++------------ src/assets/styles/pages/media.css | 1 - src/pages/main/music/albums/3-months.html | 2 +- src/pages/main/music/albums/this-month.html | 2 +- src/pages/main/music/albums/this-week.html | 2 +- src/pages/main/music/artists/3-months.html | 2 +- src/pages/main/music/artists/this-month.html | 2 +- src/pages/main/music/artists/this-week.html | 2 +- src/pages/main/music/index.html | 3 +-- src/pages/main/music/periods/3-months.html | 2 +- src/pages/main/music/periods/this-month.html | 2 +- src/pages/main/music/tracks/3-months.html | 2 +- src/pages/main/music/tracks/this-month.html | 2 +- src/pages/main/music/tracks/this-week.html | 2 +- 16 files changed, 17 insertions(+), 29 deletions(-) diff --git a/package-lock.json b/package-lock.json index 07bab5e5..2abee311 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "19.3.15", + "version": "19.3.16", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "19.3.15", + "version": "19.3.16", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.4.0", diff --git a/package.json b/package.json index 0a06b7c7..e784b12e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "19.3.15", + "version": "19.3.16", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 2bff9408..1e63e33e 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -463,10 +463,6 @@ article { & [rel="author"] { margin-bottom: var(--sizing-xs); } - - & p:first-of-type { - margin-top: var(--sizing-sm); - } } .footnotes + .banner { @@ -594,14 +590,8 @@ li { flex-direction: row; } - article { - & h2 { - margin: 0 0 var(--sizing-xs); - } - - & p:first-of-type { - margin-top: var(--sizing-md); - } + article h2 { + margin: 0 0 var(--sizing-xs); } footer nav.social { diff --git a/src/assets/styles/pages/media.css b/src/assets/styles/pages/media.css index 14efd0d1..b3edcd06 100644 --- a/src/assets/styles/pages/media.css +++ b/src/assets/styles/pages/media.css @@ -66,7 +66,6 @@ & .artist-display { flex-direction: row; gap: var(--sizing-md); - margin: 0 0 var(--sizing-base) 0; & .artist-meta { margin-top: 0; diff --git a/src/pages/main/music/albums/3-months.html b/src/pages/main/music/albums/3-months.html index 32c3c4de..e70aca9b 100644 --- a/src/pages/main/music/albums/3-months.html +++ b/src/pages/main/music/albums/3-months.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or tracks I've listened to over the last 3 months.

+

See the artists or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/albums/this-month.html b/src/pages/main/music/albums/this-month.html index 4e8206c5..bc93eae4 100644 --- a/src/pages/main/music/albums/this-month.html +++ b/src/pages/main/music/albums/this-month.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or tracks I've listened to this month.

+

See the artists or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/albums/this-week.html b/src/pages/main/music/albums/this-week.html index f9816641..30b113dd 100644 --- a/src/pages/main/music/albums/this-week.html +++ b/src/pages/main/music/albums/this-week.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or tracks I've listened to this week.

+

See the artists or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/artists/3-months.html b/src/pages/main/music/artists/3-months.html index c06b0cc1..06168221 100644 --- a/src/pages/main/music/artists/3-months.html +++ b/src/pages/main/music/artists/3-months.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the albums or tracks I've listened to over the last 3 months.

+

See the albums or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/artists/this-month.html b/src/pages/main/music/artists/this-month.html index 8e9904b6..d9c95d39 100644 --- a/src/pages/main/music/artists/this-month.html +++ b/src/pages/main/music/artists/this-month.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the albums or tracks I've listened to this month.

+

See the albums or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/artists/this-week.html b/src/pages/main/music/artists/this-week.html index d658776f..6a4dca7f 100644 --- a/src/pages/main/music/artists/this-week.html +++ b/src/pages/main/music/artists/this-week.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the albums or tracks I've listened to this week.

+

See the albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.


{% endif %} {% render "partials/media/grid.liquid" data:pagination, shape: "square" %} \ No newline at end of file diff --git a/src/pages/main/music/index.html b/src/pages/main/music/index.html index 2f79346c..a43bcd8c 100644 --- a/src/pages/main/music/index.html +++ b/src/pages/main/music/index.html @@ -11,9 +11,8 @@ schema: music-index {% endcapture %} -

This is everything I've been listening to recently — it's collected in a database as I listen to it and displayed here. You can read more about the technical details, if you'd like.

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See more of the artists, albums or tracks I've listened to this week.

+

See more of the artists, albums or tracks I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months

{% render "partials/widgets/now-playing.liquid" %}
diff --git a/src/pages/main/music/periods/3-months.html b/src/pages/main/music/periods/3-months.html index 1cab115b..dc4d1522 100644 --- a/src/pages/main/music/periods/3-months.html +++ b/src/pages/main/music/periods/3-months.html @@ -9,7 +9,7 @@ schema: music-period ---

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See more of the artists, albums or tracks I've listened to over the last 3 months.

+

See more of the artists, albums or tracks I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.


diff --git a/src/pages/main/music/periods/this-month.html b/src/pages/main/music/periods/this-month.html index 84e94bcf..0c10f18c 100644 --- a/src/pages/main/music/periods/this-month.html +++ b/src/pages/main/music/periods/this-month.html @@ -9,7 +9,7 @@ schema: music-period ---

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See more of the artists, albums or tracks I've listened to this month.

+

See more of the artists, albums or tracks I've listened to this month. Or take a look at what I've listened to this week or over the last 3 months.


diff --git a/src/pages/main/music/tracks/3-months.html b/src/pages/main/music/tracks/3-months.html index 58503da4..55a375f6 100644 --- a/src/pages/main/music/tracks/3-months.html +++ b/src/pages/main/music/tracks/3-months.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.threeMonth.artists.size }} artists, {{ music.threeMonth.albums.size }} albums and {{ music.threeMonth.totalTracks }} tracks over the last 3 months. Most of that has been {{ music.threeMonth.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or albums I've listened to over the last 3 months.

+

See the artists or albums I've listened to over the last 3 months. Or take a look at what I've listened to this week or this month.


{% endif %} {% render "partials/media/music/chart.liquid" data:pagination, playTotal: music.threeMonth.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/music/tracks/this-month.html b/src/pages/main/music/tracks/this-month.html index 09971ad3..d7b03d7b 100644 --- a/src/pages/main/music/tracks/this-month.html +++ b/src/pages/main/music/tracks/this-month.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.month.artists.size }} artists, {{ music.month.albums.size }} albums and {{ music.month.totalTracks }} tracks this month. Most of that has been {{ music.month.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or albums this month.

+

See the artists or albums this month. Or take a look at what I've listened to this week or over the last 3 months.


{% endif %} {% render "partials/media/music/chart.liquid" data:pagination, playTotal: music.month.tracks[0].plays %} \ No newline at end of file diff --git a/src/pages/main/music/tracks/this-week.html b/src/pages/main/music/tracks/this-week.html index 3af91f7e..5e9aeee0 100644 --- a/src/pages/main/music/tracks/this-week.html +++ b/src/pages/main/music/tracks/this-week.html @@ -13,7 +13,7 @@ schema: music {% if pagination.pageNumber == 0 %}

I've listened to {{ music.week.artists.size }} artists, {{ music.week.albums.size }} albums and {{ music.week.totalTracks }} tracks this week. Most of that has been {{ music.week.genres | sortByPlaysDescending: "plays" | genreStrings: "genre" | mediaLinks: "genre", 5 }}.

-

See the artists or albums I've listened to this week.

+

See the artists or albums I've listened to this week. Or take a look at what I've listened to this month or over the last 3 months.


{% endif %} {% render "partials/media/music/chart.liquid" data:pagination, playTotal: music.week.tracks[0].plays %} \ No newline at end of file