chore: reorganize home page to put media + activity in single section

This commit is contained in:
Cory Dransfeldt 2025-05-10 08:01:47 -07:00
parent 965c48fc3e
commit 0ccc749cd8
No known key found for this signature in database
5 changed files with 85 additions and 92 deletions

4
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.7.4", "version": "3.8.4",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.7.4", "version": "3.8.4",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"html-minifier-terser": "7.2.0", "html-minifier-terser": "7.2.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "coryd.dev", "name": "coryd.dev",
"version": "3.7.4", "version": "3.8.4",
"description": "The source for my personal site. Built using 11ty (and other tools).", "description": "The source for my personal site. Built using 11ty (and other tools).",
"type": "module", "type": "module",
"engines": { "engines": {

View file

@ -1,10 +1,5 @@
<article> {%- for item in items -%}
<h2> <article class="{{ item.type }}">
{% tablericon "activity" %}
Recent activity
</h2>
{%- for item in items -%}
<article class="{{ item.type }}">
<aside> <aside>
{%- if item.featured -%} {%- if item.featured -%}
{% tablericon "star" %} {% tablericon "star" %}
@ -57,6 +52,5 @@
{% render "blocks/tags.liquid", {% render "blocks/tags.liquid",
tags:item.tags tags:item.tags
%} %}
</article>
{%- endfor -%}
</article> </article>
{%- endfor -%}

View file

@ -1,22 +1,15 @@
<article> {% render "media/grid.liquid",
<h2>
{% tablericon "activity" %}
Recent media
</h2>
<p>My top <a href="/music/this-week/artists/" class="music">artists</a>, <a href="/music/this-week/albums/" class="music">albums</a>, recently <a href="/books/years/{{ "now" | date: "%Y" }}/" class="books">read books</a>, watched <a href="/watching/recent/movies/" class="tv">movies</a> and <a href="/watching/recent/shows/" class="tv">shows</a>. A living snapshot, if you will.</p>
{% render "media/grid.liquid",
globals:globals, globals:globals,
data:media.recentMusic, data:media.recentMusic,
loading:"eager" loading:"eager"
%} %}
{% render "media/grid.liquid", {% render "media/grid.liquid",
globals:globals, globals:globals,
data:media.recentWatchedRead, data:media.recentWatchedRead,
shape:"vertical", shape:"vertical",
loading:"eager" loading:"eager"
%} %}
{% render "blocks/banners/rss.liquid", {% render "blocks/banners/rss.liquid",
url:"/feeds", url:"/feeds",
text:"Subscribe to my movies, books, links or activity feed(s)" text:"Subscribe to my posts, movies, books, links or activity feed(s)"
%} %}
</article>

View file

@ -6,10 +6,16 @@ updated: "now"
intro:globals.intro, intro:globals.intro,
nowPlaying:nowPlaying.content nowPlaying:nowPlaying.content
%} %}
{% render "home/recent-media.liquid" <article>
<h2>
{% tablericon "activity" %}
Recent activity
</h2>
{% render "home/recent-media.liquid"
media:recentMedia, media:recentMedia,
globals:globals globals:globals
%} %}
{% render "home/recent-activity.liquid" {% render "home/recent-activity.liquid"
items:recentActivity items:recentActivity
%} %}
</article>