diff --git a/config/filters/index.js b/config/filters/index.js index 7b2f1114..f497d7ad 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -3,7 +3,6 @@ import feeds from './feeds.js' import general from './general.js' import media from './media.js' import navigation from './navigation.js' -import posts from './posts.js' export default { ...dates, @@ -11,5 +10,4 @@ export default { ...general, ...media, ...navigation, - ...posts } \ No newline at end of file diff --git a/config/filters/posts.js b/config/filters/posts.js deleted file mode 100644 index 5d4e62b8..00000000 --- a/config/filters/posts.js +++ /dev/null @@ -1,8 +0,0 @@ -import { shuffleArray } from '../utilities/index.js' - -export default { - filterByPostType: (posts, postType) => { - if (postType === 'featured') return shuffleArray(posts.filter(post => post.featured === true)).slice(0, 3) - return posts.slice(0, 5) - } -} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 7253ba94..ab4e6f1f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "coryd.dev", - "version": "24.18.2", + "version": "24.19.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "coryd.dev", - "version": "24.18.2", + "version": "24.19.0", "license": "MIT", "dependencies": { "@cdransf/api-text": "^1.5.0", diff --git a/package.json b/package.json index 0c95d94a..2e34682e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "24.18.2", + "version": "24.19.0", "description": "The source for my personal site. Built using 11ty (and other tools).", "type": "module", "scripts": { diff --git a/src/assets/styles/base/index.css b/src/assets/styles/base/index.css index 0c98022c..0ecd8d25 100644 --- a/src/assets/styles/base/index.css +++ b/src/assets/styles/base/index.css @@ -25,37 +25,39 @@ body { background: var(--accent-color); } +.books, +.collected, +.concerts, +.country, +.favorite, +.link, +.movies, +.tv, +.music, +.posts, +.tattoo { + &.books { --section-color: var(--books); } + &.collected { --section-color: var(--collected); } + &.concerts { --section-color: var(--concerts); } + &.country { --section-color: var(--country); } + &.favorite { --section-color: var(--favorite); } + &.link { --section-color: var(--link); } + &.movies, &.tv { --section-color: var(--tv); } + &.music { --section-color: var(--music); } + &.posts { --section-color: var(--posts); } + &.tattoo { --section-color: var(--tattoo); } + + color: var(--section-color); + + & svg { + stroke: var(--section-color); + } +} + p { margin: var(--margin-vertical-base-horizontal-zero); overflow: visible; - &.books, - &.collected, - &.concerts, - &.country, - &.favorite, - &.movies, - &.tv, - &.music, - &.posts, - &.tattoo { - &.books { --section-color: var(--books); } - &.collected { --section-color: var(--collected); } - &.concerts { --section-color: var(--concerts); } - &.country { --section-color: var(--country); } - &.favorite { --section-color: var(--favorite); } - &.movies, &.tv { --section-color: var(--tv); } - &.music { --section-color: var(--music); } - &.posts { --section-color: var(--posts); } - &.tattoo { --section-color: var(--tattoo); } - - color: var(--section-color); - - & svg { - stroke: var(--section-color); - } - } - & a { text-decoration: underline; text-underline-offset: var(--spacing-xs); @@ -93,7 +95,9 @@ p:not(.banner p) > svg { } :is(h1, h2, h3, h4, h5, h6):has(svg) { - gap: var(--spacing-xs) + display: flex; + align-items: center; + gap: var(--spacing-sm) } strong, @@ -130,7 +134,7 @@ a { &.headphones > svg { stroke: var(--music); } &.heart-handshake > svg { stroke: var(--webrings); } &.info-circle > svg { stroke: var(--about); } - &.link > svg { stroke: var(--links); } + &.link > svg { stroke: var(--link); } &.mail-plus > svg { stroke: var(--newsletter); } &.rss > svg { stroke: var(--brand-rss); } &.search > svg { stroke: var(--search); } @@ -173,7 +177,7 @@ a:active, :is(a):has(svg) { display: inline-flex; align-items: center; - gap: var(--spacing-xs); + gap: var(--spacing-sm); & svg { stroke: var(--accent-color); @@ -250,7 +254,6 @@ h6 { } .section-header { - display: flex; margin: var(--spacing-xl) 0 var(--spacing-lg); line-height: var(--line-height-sm); @@ -484,9 +487,16 @@ article { } & time { - display: block; + display: flex; + align-items: center; + gap: var(--spacing-sm); color: var(--gray-dark); font-size: var(--font-size-sm); + + & svg { + width: var(--sizing-svg-sm); + height: var(--sizing-svg-sm); + } } } diff --git a/src/assets/styles/defaults/vars.css b/src/assets/styles/defaults/vars.css index 8bfddbb6..791ca57a 100644 --- a/src/assets/styles/defaults/vars.css +++ b/src/assets/styles/defaults/vars.css @@ -59,7 +59,7 @@ --country: #20b2aa; --error: #d92525; --favorite: #ff69b4; - --links: #9370db; + --link: #9370db; --moon: #6a5acd; --music: #1e90ff; --newsletter: #40e0d0; diff --git a/src/includes/partials/home/recent-activity.liquid b/src/includes/partials/home/recent-activity.liquid new file mode 100644 index 00000000..3cf024d9 --- /dev/null +++ b/src/includes/partials/home/recent-activity.liquid @@ -0,0 +1,17 @@ +{%- assign track = music.week.tracks | first -%} +{%- assign show = tv.recentlyWatched | first -%} +{%- assign movie = movies.recentlyWatched | first -%} +{%- assign book = books | bookStatus: 'finished' | bookSortDescending | first -%} +{%- assign link = links | first -%} +

+ {% tablericon "activity" "Recent activity" %} + Recent activity +

+ +{% render "partials/blocks/banners/rss.liquid", url: "/feeds", text: "Subscribe to my movies, books, links or activity feed(s)" %} \ No newline at end of file diff --git a/src/includes/partials/home/posts.liquid b/src/includes/partials/home/recent-posts.liquid similarity index 54% rename from src/includes/partials/home/posts.liquid rename to src/includes/partials/home/recent-posts.liquid index c3678963..c76b12bf 100644 --- a/src/includes/partials/home/posts.liquid +++ b/src/includes/partials/home/recent-posts.liquid @@ -1,14 +1,14 @@ -{%- assign posts = postData | filterByPostType: postType %}
-

- {% tablericon icon title %} - {{ title }} +

+ {% tablericon "clock" "Recent posts" %} + Recent posts

- {%- for post in posts -%} + {%- for post in posts limit: 5 -%}

@@ -17,7 +17,5 @@ {{ post.description | normalize_whitespace | markdown | truncatewords: 50 }}

{%- endfor -%} - {%- if postType != 'featured' -%} - View all posts {% tablericon "arrow-right" "View all posts" %} - {%- endif -%} + View all posts {% tablericon "arrow-right" "View all posts" %}
\ No newline at end of file diff --git a/src/includes/partials/home/status.liquid b/src/includes/partials/home/status.liquid index e9e68c90..1116b0d3 100644 --- a/src/includes/partials/home/status.liquid +++ b/src/includes/partials/home/status.liquid @@ -1,7 +1,6 @@ -{%- assign artist = music.week.artists | first -%} -{%- assign book = books | bookStatus: 'started' | reverse | first -%} -{%- assign show = tv.recentlyWatched | first -%}
-

I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading, tv and movies. Lately I've been listening to a lot of {{ artist.title }}, reading {{ book.title }} and watching {{ show.name }}.

+

I'm a software developer based in Camarillo, California. I enjoy hanging out with my beautiful family and 3 rescue dogs, technology, automation, music, writing, reading, tv and movies.

{% render "partials/blocks/now-playing.liquid", music:music %} +
+ {% render "partials/home/recent-activity.liquid" music:music, books:books, tv:tv, movies:movies, links:links %}
\ No newline at end of file diff --git a/src/pages/dynamic/index.html b/src/pages/dynamic/index.html index d81fd3e9..4fdca191 100644 --- a/src/pages/dynamic/index.html +++ b/src/pages/dynamic/index.html @@ -2,6 +2,5 @@ layout: default permalink: / --- -{% render "partials/home/status.liquid" status:status, music:music, books:books.all, tv:tv %} -{% render "partials/home/posts.liquid" icon: "pencil-star", title: "Featured", postData:posts, postType: "featured" %} -{% render "partials/home/posts.liquid" icon: "clock", title: "Recent posts", postData:posts %} \ No newline at end of file +{% render "partials/home/status.liquid" music:music, books:books.all, tv:tv, movies:movies, links:links %} +{% render "partials/home/recent-posts.liquid" posts:posts %} \ No newline at end of file diff --git a/src/pages/dynamic/posts/index.html b/src/pages/dynamic/posts/index.html index 98d28b52..13017129 100644 --- a/src/pages/dynamic/posts/index.html +++ b/src/pages/dynamic/posts/index.html @@ -10,7 +10,10 @@ permalink: "/posts/{% if pagination.pageNumber > 0 %}{{ pagination.pageNumber }}
{% for post in pagination.items %}
- +

{{ post.title }}

diff --git a/src/pages/dynamic/posts/post.html b/src/pages/dynamic/posts/post.html index 4540d74f..145314d2 100644 --- a/src/pages/dynamic/posts/post.html +++ b/src/pages/dynamic/posts/post.html @@ -8,8 +8,13 @@ permalink: "{{ post.slug }}/index.html" schema: blog ---
- -

{{ post.title }}

+ +

+ {{ post.title }} +

{% render "partials/blocks/banners/old-post.liquid", date:post.date %} {%- if post.image -%}