diff --git a/package-lock.json b/package-lock.json
index 8a3c1c45..8d2b61b4 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -1,15 +1,15 @@
{
"name": "coryd.dev",
- "version": "1.8.4",
+ "version": "1.9.0",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "coryd.dev",
- "version": "1.8.4",
+ "version": "1.9.0",
"license": "MIT",
"dependencies": {
- "@cdransf/api-text": "^1.5.0",
+ "@cdransf/api-text": "^1.6.0",
"@cdransf/select-pagination": "^1.3.1",
"@cdransf/theme-toggle": "^3.0.0",
"@daviddarnes/mastodon-post": "^1.3.0",
@@ -372,9 +372,9 @@
}
},
"node_modules/@cdransf/api-text": {
- "version": "1.5.0",
- "resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.5.0.tgz",
- "integrity": "sha512-asRvp2SjipL+np8IhK+rIJzggxexxENNZSuLSG2S8QcUxm2eVyOgQipwz/OY2cUt1D+RH5JrLoDI2pR1RP99KQ==",
+ "version": "1.6.0",
+ "resolved": "https://registry.npmjs.org/@cdransf/api-text/-/api-text-1.6.0.tgz",
+ "integrity": "sha512-ezcPseEAGFixS86JmWt0Y5xUkhDfgFFVt5jOLV5b98hV26aBdgq3XQjbLWZsrBSGKeW0dTdBtK6BV/jgXnXo1w==",
"license": "MIT"
},
"node_modules/@cdransf/eleventy-plugin-tabler-icons": {
diff --git a/package.json b/package.json
index 11b0161d..82576531 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "coryd.dev",
- "version": "1.8.4",
+ "version": "1.9.0",
"description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module",
"engines": {
@@ -26,7 +26,7 @@
"author": "Cory Dransfeldt",
"license": "MIT",
"dependencies": {
- "@cdransf/api-text": "^1.5.0",
+ "@cdransf/api-text": "^1.6.0",
"@cdransf/select-pagination": "^1.3.1",
"@cdransf/theme-toggle": "^3.0.0",
"@daviddarnes/mastodon-post": "^1.3.0",
diff --git a/src/includes/partials/blocks/now-playing.liquid b/src/includes/partials/blocks/now-playing.liquid
index d0a37425..25410cd3 100644
--- a/src/includes/partials/blocks/now-playing.liquid
+++ b/src/includes/partials/blocks/now-playing.liquid
@@ -1,8 +1,8 @@
-
- {{ nowPlaying }}
-
+
+ {{ nowPlaying }}
+
\ No newline at end of file
diff --git a/src/includes/partials/home/intro.liquid b/src/includes/partials/home/intro.liquid
index d739b247..f18593bf 100644
--- a/src/includes/partials/home/intro.liquid
+++ b/src/includes/partials/home/intro.liquid
@@ -1,4 +1,3 @@
{{ intro }}
- {% render "partials/blocks/now-playing.liquid", nowPlaying:nowPlaying %}
\ No newline at end of file
diff --git a/src/includes/partials/home/recent-activity.liquid b/src/includes/partials/home/recent-activity.liquid
index f60d75f5..3e9aa9db 100644
--- a/src/includes/partials/home/recent-activity.liquid
+++ b/src/includes/partials/home/recent-activity.liquid
@@ -10,7 +10,8 @@
Recent activity
- - Top track this week: {{ track.track_name }} by {{ track.artist_name }}
+ - Last track listened to: {% render "partials/blocks/now-playing.liquid", nowPlaying:nowPlaying %}
+ - Top track this week: {{ track.track_name }} by {{ track.artist_name }}
- Last episode watched: {{ show.formatted_episode }} of {{ show.title }}
- Last movie watched: {{ movie.title }}{%- if movie.rating %} ({{ movie.rating }}){%- endif -%}
- Last book finished: {{ book.title }} by {{ book.author }}{%- if book.rating %} ({{ book.rating }}){%- endif -%}
diff --git a/src/pages/index.html b/src/pages/index.html
index 78ca1566..760a126c 100644
--- a/src/pages/index.html
+++ b/src/pages/index.html
@@ -1,6 +1,6 @@
---
permalink: /
---
-{% render "partials/home/intro.liquid" intro:globals.intro, nowPlaying:nowPlaying.content %}
-{% render "partials/home/recent-activity.liquid" music:music, books:books.currentYear, tv:tv, movies:movies, links:links %}
+{% render "partials/home/intro.liquid" intro:globals.intro %}
+{% render "partials/home/recent-activity.liquid" music:music, nowPlaying:nowPlaying.content, books:books.currentYear, tv:tv, movies:movies, links:links %}
{% render "partials/home/recent-posts.liquid" posts:posts %}
\ No newline at end of file