From e3e4ab03357ae213ab62e2be66e5d71037064be8 Mon Sep 17 00:00:00 2001 From: Cory Dransfeldt Date: Mon, 29 Apr 2024 18:12:37 -0700 Subject: [PATCH] chore: organization --- package.json | 2 +- src/_includes/now.liquid | 2 +- src/_includes/partials/addon-links.liquid | 8 -------- .../partials/{now/topper.liquid => home/now.liquid} | 2 +- src/_includes/partials/{ => home}/posts.liquid | 0 src/_includes/partials/widgets/addon-links.liquid | 8 ++++++++ src/_includes/partials/{ => widgets}/badge-grid.liquid | 0 src/_includes/partials/{ => widgets}/link-peek.liquid | 0 src/_includes/partials/{ => widgets}/mastodon-post.liquid | 0 src/_includes/partials/{ => widgets}/now-playing.liquid | 0 src/_includes/partials/{ => widgets}/paginator.liquid | 0 src/_includes/partials/{ => widgets}/popular-posts.liquid | 0 src/_includes/partials/{ => widgets}/post-graph.liquid | 0 src/_includes/partials/{ => widgets}/recent-links.liquid | 0 src/_includes/partials/{ => widgets}/share-button.liquid | 0 src/_includes/partials/{ => widgets}/tags.liquid | 0 .../partials/{ => widgets}/youtube-player.liquid | 0 src/_includes/post.liquid | 8 ++++---- src/index.html | 6 +++--- src/links.html | 6 +++--- src/pages/404.html | 4 ++-- src/pages/about.md | 2 +- src/pages/books/want-to-read.html | 2 +- src/pages/contact-success.html | 4 ++-- src/pages/search.html | 4 ++-- src/pages/stats.html | 4 ++-- src/posts.html | 2 +- src/posts/2013/arcade-fire-reflektor-999.md | 2 +- src/posts/2013/damien-jurado-2014.md | 2 +- src/posts/2013/dawes-most-people.md | 2 +- src/posts/2013/nomeansno-live-via-marinet-tvm.md | 2 +- src/posts/2013/okkervil-river-open-mic-night.md | 2 +- src/posts/2013/skin-and-bones-old-horses.md | 2 +- .../2013/the-postal-service-some-idealistic-future.md | 2 +- src/posts/2018/fugazi-turnover-live-1991.md | 2 +- .../2019/waste-of-space-orchestra-seekers-reflection.md | 2 +- .../2023/it-is-possible-to-both-stream-and-buy-music.md | 2 +- src/posts/2023/talk-building-now-page-with-11ty.md | 2 +- src/posts/2024/surfacing-most-used-tags-in-eleventy.md | 2 +- 39 files changed, 44 insertions(+), 44 deletions(-) delete mode 100644 src/_includes/partials/addon-links.liquid rename src/_includes/partials/{now/topper.liquid => home/now.liquid} (94%) rename src/_includes/partials/{ => home}/posts.liquid (100%) create mode 100644 src/_includes/partials/widgets/addon-links.liquid rename src/_includes/partials/{ => widgets}/badge-grid.liquid (100%) rename src/_includes/partials/{ => widgets}/link-peek.liquid (100%) rename src/_includes/partials/{ => widgets}/mastodon-post.liquid (100%) rename src/_includes/partials/{ => widgets}/now-playing.liquid (100%) rename src/_includes/partials/{ => widgets}/paginator.liquid (100%) rename src/_includes/partials/{ => widgets}/popular-posts.liquid (100%) rename src/_includes/partials/{ => widgets}/post-graph.liquid (100%) rename src/_includes/partials/{ => widgets}/recent-links.liquid (100%) rename src/_includes/partials/{ => widgets}/share-button.liquid (100%) rename src/_includes/partials/{ => widgets}/tags.liquid (100%) rename src/_includes/partials/{ => widgets}/youtube-player.liquid (100%) diff --git a/package.json b/package.json index a285221a..03a4ce3e 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "coryd.dev", - "version": "13.2.7", + "version": "13.2.8", "description": "The source for my personal site. Built using 11ty.", "type": "module", "scripts": { diff --git a/src/_includes/now.liquid b/src/_includes/now.liquid index e4233178..b9586f54 100644 --- a/src/_includes/now.liquid +++ b/src/_includes/now.liquid @@ -89,7 +89,7 @@ layout: default {% assign bookData = books | bookStatus: 'started' | reverse %} {% render "partials/now/media-grid.liquid", data:bookData, shape: "vertical", count: 6 %} -{% render "partials/recent-links.liquid", links:collections.links %} +{% render "partials/widgets/recent-links.liquid", links:collections.links %}

{% tablericon "movie" "Movies" %} Movies diff --git a/src/_includes/partials/addon-links.liquid b/src/_includes/partials/addon-links.liquid deleted file mode 100644 index 99b22fe6..00000000 --- a/src/_includes/partials/addon-links.liquid +++ /dev/null @@ -1,8 +0,0 @@ - \ No newline at end of file diff --git a/src/_includes/partials/now/topper.liquid b/src/_includes/partials/home/now.liquid similarity index 94% rename from src/_includes/partials/now/topper.liquid rename to src/_includes/partials/home/now.liquid index 1b50fcaf..a93b8891 100644 --- a/src/_includes/partials/now/topper.liquid +++ b/src/_includes/partials/home/now.liquid @@ -4,5 +4,5 @@

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 }}.

{% render "partials/now/status.liquid", status:status %} - {% render "partials/now-playing.liquid" %} + {% render "partials/widgets/now-playing.liquid" %}
\ No newline at end of file diff --git a/src/_includes/partials/posts.liquid b/src/_includes/partials/home/posts.liquid similarity index 100% rename from src/_includes/partials/posts.liquid rename to src/_includes/partials/home/posts.liquid diff --git a/src/_includes/partials/widgets/addon-links.liquid b/src/_includes/partials/widgets/addon-links.liquid new file mode 100644 index 00000000..dd896035 --- /dev/null +++ b/src/_includes/partials/widgets/addon-links.liquid @@ -0,0 +1,8 @@ + \ No newline at end of file diff --git a/src/_includes/partials/badge-grid.liquid b/src/_includes/partials/widgets/badge-grid.liquid similarity index 100% rename from src/_includes/partials/badge-grid.liquid rename to src/_includes/partials/widgets/badge-grid.liquid diff --git a/src/_includes/partials/link-peek.liquid b/src/_includes/partials/widgets/link-peek.liquid similarity index 100% rename from src/_includes/partials/link-peek.liquid rename to src/_includes/partials/widgets/link-peek.liquid diff --git a/src/_includes/partials/mastodon-post.liquid b/src/_includes/partials/widgets/mastodon-post.liquid similarity index 100% rename from src/_includes/partials/mastodon-post.liquid rename to src/_includes/partials/widgets/mastodon-post.liquid diff --git a/src/_includes/partials/now-playing.liquid b/src/_includes/partials/widgets/now-playing.liquid similarity index 100% rename from src/_includes/partials/now-playing.liquid rename to src/_includes/partials/widgets/now-playing.liquid diff --git a/src/_includes/partials/paginator.liquid b/src/_includes/partials/widgets/paginator.liquid similarity index 100% rename from src/_includes/partials/paginator.liquid rename to src/_includes/partials/widgets/paginator.liquid diff --git a/src/_includes/partials/popular-posts.liquid b/src/_includes/partials/widgets/popular-posts.liquid similarity index 100% rename from src/_includes/partials/popular-posts.liquid rename to src/_includes/partials/widgets/popular-posts.liquid diff --git a/src/_includes/partials/post-graph.liquid b/src/_includes/partials/widgets/post-graph.liquid similarity index 100% rename from src/_includes/partials/post-graph.liquid rename to src/_includes/partials/widgets/post-graph.liquid diff --git a/src/_includes/partials/recent-links.liquid b/src/_includes/partials/widgets/recent-links.liquid similarity index 100% rename from src/_includes/partials/recent-links.liquid rename to src/_includes/partials/widgets/recent-links.liquid diff --git a/src/_includes/partials/share-button.liquid b/src/_includes/partials/widgets/share-button.liquid similarity index 100% rename from src/_includes/partials/share-button.liquid rename to src/_includes/partials/widgets/share-button.liquid diff --git a/src/_includes/partials/tags.liquid b/src/_includes/partials/widgets/tags.liquid similarity index 100% rename from src/_includes/partials/tags.liquid rename to src/_includes/partials/widgets/tags.liquid diff --git a/src/_includes/partials/youtube-player.liquid b/src/_includes/partials/widgets/youtube-player.liquid similarity index 100% rename from src/_includes/partials/youtube-player.liquid rename to src/_includes/partials/widgets/youtube-player.liquid diff --git a/src/_includes/post.liquid b/src/_includes/post.liquid index 1d81193c..eb979b71 100644 --- a/src/_includes/post.liquid +++ b/src/_includes/post.liquid @@ -7,14 +7,14 @@ schema: blog
- {% render "partials/share-button.liquid", url:postUrl, title:title, tagMap:collections.tagMap %} + {% render "partials/widgets/share-button.liquid", url:postUrl, title:title, tagMap:collections.tagMap %} {% tablericon "calendar-month" "Date" %}

{{ title }}

-
{% render "partials/tags.liquid", tags:tags %}
+
{% render "partials/widgets/tags.liquid", tags:tags %}
@@ -23,5 +23,5 @@ schema: blog
-{% render "partials/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %} -{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} \ No newline at end of file +{% render "partials/widgets/mastodon-post.liquid", postUrl:postUrl, linkPosts:linkPosts %} +{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} \ No newline at end of file diff --git a/src/index.html b/src/index.html index 789f34bd..b0332c47 100644 --- a/src/index.html +++ b/src/index.html @@ -1,6 +1,6 @@ --- layout: default --- -{% render "partials/now/topper.liquid" status:status, artists:music.artists, books:books, tv:tv %} -{% render "partials/posts.liquid" icon: "star", title: "Featured", postData:collections.posts, postType: "featured" %} -{% render "partials/posts.liquid" icon: "clock-2", title: "Recent posts", postData:collections.posts %} \ No newline at end of file +{% render "partials/home/now.liquid" status:status, artists:music.artists, books:books, tv:tv %} +{% render "partials/home/posts.liquid" icon: "star", title: "Featured", postData:collections.posts, postType: "featured" %} +{% render "partials/home/posts.liquid" icon: "clock-2", title: "Recent posts", postData:collections.posts %} \ No newline at end of file diff --git a/src/links.html b/src/links.html index fea86712..7f4f7b01 100644 --- a/src/links.html +++ b/src/links.html @@ -15,13 +15,13 @@ pagination: {% for link in pagination.items %} {% assign author = link.data.link | stripUtm | authorLookup %} {% endfor %} -{% render "partials/paginator.liquid", pagination:pagination %} \ No newline at end of file +{% render "partials/widgets/paginator.liquid", pagination:pagination %} \ No newline at end of file diff --git a/src/pages/404.html b/src/pages/404.html index f3f26525..e37f4cb0 100644 --- a/src/pages/404.html +++ b/src/pages/404.html @@ -11,6 +11,6 @@ image: /assets/img/404.jpg What kind of idiots do you have working here? Hurry up and skip out on the room service bill!
- {% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} - {% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} + {% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} + {% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} \ No newline at end of file diff --git a/src/pages/about.md b/src/pages/about.md index 091cfe23..cc628e6c 100644 --- a/src/pages/about.md +++ b/src/pages/about.md @@ -22,4 +22,4 @@ I tend to write about whatever strikes me, with a focus on development, technolo [You can also see what I'm doing now](/now), [take a look at the links I've shared recently](/links) or [check out the webrings I'm a member of](/webrings). -{% render "partials/badge-grid.liquid" %} +{% render "partials/widgets/badge-grid.liquid" %} diff --git a/src/pages/books/want-to-read.html b/src/pages/books/want-to-read.html index 34c4f4c0..d98c732c 100644 --- a/src/pages/books/want-to-read.html +++ b/src/pages/books/want-to-read.html @@ -22,4 +22,4 @@ permalink: "/books/want-to-read/{{ pagination.pageNumber }}/index.html" {% endfor %} -{% render "partials/paginator.liquid", pagination:pagination %} \ No newline at end of file +{% render "partials/widgets/paginator.liquid", pagination:pagination %} \ No newline at end of file diff --git a/src/pages/contact-success.html b/src/pages/contact-success.html index f77e9db2..7e6d3e8c 100644 --- a/src/pages/contact-success.html +++ b/src/pages/contact-success.html @@ -8,5 +8,5 @@ permalink: /contact/success.html I'll be in touch soon! Head home
-{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} -{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %} \ No newline at end of file +{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} +{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:links %} \ No newline at end of file diff --git a/src/pages/search.html b/src/pages/search.html index f0598f83..88dad966 100644 --- a/src/pages/search.html +++ b/src/pages/search.html @@ -55,5 +55,5 @@ permalink: /search.html -{% render "partials/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} -{% render "partials/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} \ No newline at end of file +{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount, hasSpace:true %} +{% render "partials/widgets/addon-links.liquid", posts:collections.posts, analytics:analytics, links:collections.links %} \ No newline at end of file diff --git a/src/pages/stats.html b/src/pages/stats.html index f9e028f5..4c42d671 100644 --- a/src/pages/stats.html +++ b/src/pages/stats.html @@ -8,7 +8,7 @@ permalink: /stats.html

My first post was published on {{ collections.postStats.firstPostDate | dateToReadableDate }} and my most recent one was published on {{ collections.postStats.lastPostDate | dateToReadableDate }}. I've published {{ collections.postStats.postCount }} posts containing {{ collections.postStats.totalWordCount }} words and {{ collections.postStats.totalCodeBlockCount }} code samples.

Posts have, on average, {{ collections.postStats.avgWordCount | round }} words and a gap of {{ collections.postStats.avgDays | round }} days between them.

Top tags

-{% render "partials/tags.liquid", tags:collections.tagsSortedByCount %} +{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount %}

Popular posts

Posts by year

-{% render "partials/post-graph.liquid", postYears: collections.postStats.years %} +{% render "partials/widgets/post-graph.liquid", postYears: collections.postStats.years %}

Post distribution graphs

{%- postGraph collections.posts -%} \ No newline at end of file diff --git a/src/posts.html b/src/posts.html index 3083d6fc..d68f5935 100644 --- a/src/posts.html +++ b/src/posts.html @@ -24,4 +24,4 @@ pagination: {% endfor %} -{% render "partials/paginator.liquid", pagination:pagination %} \ No newline at end of file +{% render "partials/widgets/paginator.liquid", pagination:pagination %} \ No newline at end of file diff --git a/src/posts/2013/arcade-fire-reflektor-999.md b/src/posts/2013/arcade-fire-reflektor-999.md index d1b1a8ac..1c18ef88 100644 --- a/src/posts/2013/arcade-fire-reflektor-999.md +++ b/src/posts/2013/arcade-fire-reflektor-999.md @@ -7,4 +7,4 @@ tags: ['music'] This sample sounds promising. I can't wait to hear more from _Reflektor_ on the 9th. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=4i2wp3GkNrg" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=4i2wp3GkNrg" %} \ No newline at end of file diff --git a/src/posts/2013/damien-jurado-2014.md b/src/posts/2013/damien-jurado-2014.md index 80a34a9b..e6f3d348 100644 --- a/src/posts/2013/damien-jurado-2014.md +++ b/src/posts/2013/damien-jurado-2014.md @@ -7,4 +7,4 @@ tags: ['music'] Damien Jurado has been one of my favorite musicians for years. He's a talented, albeit nervous, performer and a gifted songwriter. The announcement that he'll have a new record out in 2014 is exciting and something that I am very much looking forward to. If the new material he played live when I saw him at the Bootleg Theater in April is any indication it should be even more experimental and unique than _Maraqopa_. I cannot wait to hear it. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=NNpAj1U1_5Q" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=NNpAj1U1_5Q" %} \ No newline at end of file diff --git a/src/posts/2013/dawes-most-people.md b/src/posts/2013/dawes-most-people.md index 2aea7a66..b50091a8 100644 --- a/src/posts/2013/dawes-most-people.md +++ b/src/posts/2013/dawes-most-people.md @@ -9,4 +9,4 @@ A wonderful new video for one of the highlights of Dawes' most recent album _Sto Damien Jurado gave "Museum of Flight" off of _Maraqopa_ a similar treatment that's also very [much worth checking out](https://www.youtube.com/watch?v=CCcAKNSJ3Ac). -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=zUWu8Ny36dc" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=zUWu8Ny36dc" %} \ No newline at end of file diff --git a/src/posts/2013/nomeansno-live-via-marinet-tvm.md b/src/posts/2013/nomeansno-live-via-marinet-tvm.md index e2b2bee9..f3ad6dc8 100644 --- a/src/posts/2013/nomeansno-live-via-marinet-tvm.md +++ b/src/posts/2013/nomeansno-live-via-marinet-tvm.md @@ -7,4 +7,4 @@ tags: ['music', 'video'] One of punk's greatest bands live via Marinet TVM. I still need to see them live and sincerely hope I get the chance to before they hang things up. Superb performance. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=euTMEIqTTfk" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=euTMEIqTTfk" %} \ No newline at end of file diff --git a/src/posts/2013/okkervil-river-open-mic-night.md b/src/posts/2013/okkervil-river-open-mic-night.md index 35bfa57c..2cbe0bc5 100644 --- a/src/posts/2013/okkervil-river-open-mic-night.md +++ b/src/posts/2013/okkervil-river-open-mic-night.md @@ -7,4 +7,4 @@ tags: ['video', 'music'] Not out of place at all at an open mic night. Excellent. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=_GnemKx1tlk" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=_GnemKx1tlk" %} \ No newline at end of file diff --git a/src/posts/2013/skin-and-bones-old-horses.md b/src/posts/2013/skin-and-bones-old-horses.md index 8ea91a12..4a52832c 100644 --- a/src/posts/2013/skin-and-bones-old-horses.md +++ b/src/posts/2013/skin-and-bones-old-horses.md @@ -9,4 +9,4 @@ Beautiful, stripped down song from a musician with a strong voice and truly hear [Grab his album here »](http://skinandbonesmusic.bandcamp.com) -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=wB52fQkjZkE" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=wB52fQkjZkE" %} \ No newline at end of file diff --git a/src/posts/2013/the-postal-service-some-idealistic-future.md b/src/posts/2013/the-postal-service-some-idealistic-future.md index a8cc369c..02d55b3a 100644 --- a/src/posts/2013/the-postal-service-some-idealistic-future.md +++ b/src/posts/2013/the-postal-service-some-idealistic-future.md @@ -7,4 +7,4 @@ tags: ['music', 'video'] A well-produced documentary and a great look at a band who, ten years later (and after only one album), still means so much to so many people. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=MoSP7lNJTqk" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=MoSP7lNJTqk" %} \ No newline at end of file diff --git a/src/posts/2018/fugazi-turnover-live-1991.md b/src/posts/2018/fugazi-turnover-live-1991.md index e5d4aa12..f6ca613f 100644 --- a/src/posts/2018/fugazi-turnover-live-1991.md +++ b/src/posts/2018/fugazi-turnover-live-1991.md @@ -6,4 +6,4 @@ tags: ['music'] --- Absolutely classic. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=gzC0RNkBXM0" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=gzC0RNkBXM0" %} \ No newline at end of file diff --git a/src/posts/2019/waste-of-space-orchestra-seekers-reflection.md b/src/posts/2019/waste-of-space-orchestra-seekers-reflection.md index 8ddca5b9..19c779ea 100644 --- a/src/posts/2019/waste-of-space-orchestra-seekers-reflection.md +++ b/src/posts/2019/waste-of-space-orchestra-seekers-reflection.md @@ -6,6 +6,6 @@ tags: ['music'] --- I could not be more excited for this release. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=V8ia-nyd_K8" %} +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=V8ia-nyd_K8" %} Kudos to Roadburn Festival [for commissioning the piece](https://roadburn.com/premiere-waste-of-space-orchestra-seekers-reflection/). diff --git a/src/posts/2023/it-is-possible-to-both-stream-and-buy-music.md b/src/posts/2023/it-is-possible-to-both-stream-and-buy-music.md index 8dbfa5dd..e0a042ca 100644 --- a/src/posts/2023/it-is-possible-to-both-stream-and-buy-music.md +++ b/src/posts/2023/it-is-possible-to-both-stream-and-buy-music.md @@ -10,4 +10,4 @@ tags: [I've been streaming music again](https://coryd.dev/posts/2023/i-dont-want-streaming-music/) in part (and I know this is ridiculous) because Spotify is ubiquitous, well-integrated and has a — well — [API that's usable for my purposes](https://coryd.dev/posts/2023/road-to-madness-apple-music-charts/). I still buy music I stream from Bandcamp and archive it and I still buy too many shirts to support bands (I also import missing music into playlists and playlist folders as an analog to albums). I've also been able to scrobble listens more reliably and found some really great bands like [PUP](https://open.spotify.com/artist/6A7uqgC2N1nUhrCLAytHxN). We'll see if it lasts, but it feels like a good balance for now. -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=iVuB1ZASrGw" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=iVuB1ZASrGw" %} \ No newline at end of file diff --git a/src/posts/2023/talk-building-now-page-with-11ty.md b/src/posts/2023/talk-building-now-page-with-11ty.md index ee0e30c0..07edb90d 100644 --- a/src/posts/2023/talk-building-now-page-with-11ty.md +++ b/src/posts/2023/talk-building-now-page-with-11ty.md @@ -7,4 +7,4 @@ tags: ['Eleventy', 'javascript', 'automation'] My talk from the Eleventy meetup about building [my now page](https://coryd.dev/now) (you even get to see how much I resemble my avatar). -{% render "partials/youtube-player.liquid", url:"https://www.youtube.com/watch?v=AzcFZJYEpnQ" %} \ No newline at end of file +{% render "partials/widgets/youtube-player.liquid", url:"https://www.youtube.com/watch?v=AzcFZJYEpnQ" %} \ No newline at end of file diff --git a/src/posts/2024/surfacing-most-used-tags-in-eleventy.md b/src/posts/2024/surfacing-most-used-tags-in-eleventy.md index 0f242428..48821464 100644 --- a/src/posts/2024/surfacing-most-used-tags-in-eleventy.md +++ b/src/posts/2024/surfacing-most-used-tags-in-eleventy.md @@ -41,7 +41,7 @@ And can then be leveraged in my Liquid partial as follows: {% raw %} ```liquid -{% render "partials/tags.liquid", tags:collections.tagsSortedByCount %} +{% render "partials/widgets/tags.liquid", tags:collections.tagsSortedByCount %} ``` {% endraw %}