diff --git a/package-lock.json b/package-lock.json index be93c503..2f5d73e0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "3.0.2", + "version": "3.2.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "3.0.2", + "version": "3.2.0", "license": "MIT", "dependencies": { "@11ty/eleventy-fetch": "4.0.1", @@ -1674,9 +1674,9 @@ "license": "MIT" }, "node_modules/electron-to-chromium": { - "version": "1.5.58", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.58.tgz", - "integrity": "sha512-al2l4r+24ZFL7WzyPTlyD0fC33LLzvxqLCwurtBibVPghRGO9hSTl+tis8t1kD7biPiH/en4U0I7o/nQbYeoVA==", + "version": "1.5.61", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.61.tgz", + "integrity": "sha512-CcRGSBCBB6L9c3PBJWYYrBo6Bzeoi+GZTKvtuRtooJGWsINk+mOInZWcssU35zDTAwreVcrMimc9aMyPpehRNw==", "dev": true, "license": "ISC" }, diff --git a/package.json b/package.json index 30887832..8508db09 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "3.0.2", + "version": "3.2.0", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "engines": { diff --git a/queries/views/media/music/genres.psql b/queries/views/media/music/genres.psql index fff13125..e841dd3a 100644 --- a/queries/views/media/music/genres.psql +++ b/queries/views/media/music/genres.psql @@ -9,40 +9,41 @@ SELECT g.slug AS url, ( SELECT - json_agg(json_build_object('name', a.name_string, 'url', a.slug, 'total_plays', to_char(a.total_plays, 'FM999,999,999,999')) + json_agg(json_build_object('name', a.name_string, 'url', a.slug, 'image', CONCAT('/', df_artist.filename_disk), 'total_plays', to_char(a.total_plays, 'FM999,999,999,999')) ORDER BY a.total_plays DESC) FROM artists a + LEFT JOIN directus_files df_artist ON a.art = df_artist.id + WHERE + a.genres = g.id) AS artists, +( + SELECT + json_agg(json_build_object('title', b.title, 'author', b.author, 'url', b.slug)) + FROM + books b + JOIN genres_books gb ON gb.books_id = b.id WHERE - a.genres = g.id) AS artists, + gb.genres_id = g.id) AS books, ( SELECT - json_agg(json_build_object('title', b.title, 'author', b.author, 'url', b.slug)) + json_agg(json_build_object('title', m.title, 'year', m.year, 'url', m.slug) + ORDER BY m.year DESC) FROM - books b - JOIN genres_books gb ON gb.books_id = b.id + movies m + JOIN genres_movies gm ON gm.movies_id = m.id WHERE - gb.genres_id = g.id) AS books, + gm.genres_id = g.id) AS movies, ( SELECT - json_agg(json_build_object('title', m.title, 'year', m.year, 'url', m.slug) - ORDER BY m.year DESC) + json_agg(json_build_object('title', p.title, 'date', p.date, 'url', p.slug) + ORDER BY p.date DESC) FROM - movies m - JOIN genres_movies gm ON gm.movies_id = m.id - WHERE - gm.genres_id = g.id) AS movies, -( - SELECT - json_agg(json_build_object('title', p.title, 'date', p.date, 'url', p.slug) - ORDER BY p.date DESC) - FROM - posts_genres pg - LEFT JOIN posts p ON pg.posts_id = p.id - WHERE - pg.genres_id = g.id) AS posts - FROM - genres g - ORDER BY - g.id ASC; + posts_genres pg + LEFT JOIN posts p ON pg.posts_id = p.id + WHERE + pg.genres_id = g.id) AS posts + FROM + genres g + ORDER BY + g.id ASC; diff --git a/src/includes/footer.liquid b/src/includes/footer.liquid index e163d1e8..3fb30a9f 100644 --- a/src/includes/footer.liquid +++ b/src/includes/footer.liquid @@ -1,6 +1,12 @@ - - {%- if updated -%} -

This page was last updated on {{ updated | strip }}.

+{%- assign updateTime = "" -%} +{%- if updated == "now" -%} + {%- assign updateTime = 'now' | date: "%B %-d, %l:%M %P", "America/Los_Angeles" -%} +{%- elsif pageUpdated -%} + {%- assign updateTime = page.updated | date: "%B %-d, %l:%M %P", "America/Los_Angeles" -%} +{%- endif -%} + + {%- if updateTime -%} +

This page was last updated on {{ updateTime | strip }}.

{%- endif -%}