feat: clearly label last track played; move to recent activity
This commit is contained in:
parent
1cd9452c28
commit
c5793b9ad4
6 changed files with 16 additions and 16 deletions
12
package-lock.json
generated
12
package-lock.json
generated
|
@ -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": {
|
||||
|
|
|
@ -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",
|
||||
|
|
|
@ -1,8 +1,8 @@
|
|||
<script type="module" src="/assets/scripts/components/api-text.js?v={% appVersion %}" crossorigin="anonymous"></script>
|
||||
<api-text api-url="/api/now-playing">
|
||||
<p class="loading client-side">{{ nowPlaying }}</p>
|
||||
<p class="content"></p>
|
||||
<api-text api-url="/api/now-playing" display="inline">
|
||||
<span class="loading client-side">{{ nowPlaying }}</span>
|
||||
<span class="content"></span>
|
||||
<noscript>
|
||||
<p>{{ nowPlaying }}</p>
|
||||
<span>{{ nowPlaying }}</span>
|
||||
</noscript>
|
||||
</api-text>
|
|
@ -1,4 +1,3 @@
|
|||
<article>
|
||||
{{ intro }}
|
||||
{% render "partials/blocks/now-playing.liquid", nowPlaying:nowPlaying %}
|
||||
</article>
|
|
@ -10,7 +10,8 @@
|
|||
Recent activity
|
||||
</h2>
|
||||
<ul>
|
||||
<li><span class="music">Top track this week:</span> <a href="{{ track.artist_url }}">{{ track.track_name }} by {{ track.artist_name }}</a></li>
|
||||
<li><span class="music">Last track listened to:</span> {% render "partials/blocks/now-playing.liquid", nowPlaying:nowPlaying %}</li>
|
||||
<li><span class="music">Top track this week:</span> {{ track.track_name }} by <a href="{{ track.artist_url }}">{{ track.artist_name }}</a></li>
|
||||
<li><span class="tv">Last episode watched:</span> <strong class="highlight-text">{{ show.formatted_episode }}</strong> of <a href="{{ show.url }}">{{ show.title }}</a></li>
|
||||
<li><span class="movies">Last movie watched:</span> <a href="{{ movie.url }}">{{ movie.title }}</a>{%- if movie.rating %} ({{ movie.rating }}){%- endif -%}</li>
|
||||
<li><span class="books">Last book finished:</span> <a href="{{ book.url }}">{{ book.title }}</a> by {{ book.author }}{%- if book.rating %} ({{ book.rating }}){%- endif -%}</li>
|
||||
|
|
|
@ -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 %}
|
Reference in a new issue