diff --git a/src/_data/blogroll.js b/src/_data/blogroll.js index 3ab57f5..fbf66c7 100644 --- a/src/_data/blogroll.js +++ b/src/_data/blogroll.js @@ -32,7 +32,7 @@ const blogroll = [ url: "https://www.arcana.computer/", }, { - title: "Jonas Downey,", + title: "Jonas Downey", url: "https://jonas.do/", }, { @@ -75,6 +75,12 @@ const blogroll = [ title: "Winnie Lim", url: "https://winnielim.org/", }, + { + title: "Cory Dransfeldt", + url: "https://coryd.dev/", + }, ]; -module.exports = blogroll; +const sortedBlogroll = blogroll.sort((a, b) => a.title.localeCompare(b.title)); + +module.exports = sortedBlogroll; diff --git a/src/_includes/layouts/post.html b/src/_includes/layouts/post.html index ac3290b..b14dc66 100644 --- a/src/_includes/layouts/post.html +++ b/src/_includes/layouts/post.html @@ -5,7 +5,7 @@ layout: "layouts/base"
{% from "macros/date.njk" import format %} - {{ format(date) }} + {{ format(page.date) }}

{{ title }}

diff --git a/src/_includes/partials/archive.html b/src/_includes/partials/archive.html deleted file mode 100644 index 8fd741f..0000000 --- a/src/_includes/partials/archive.html +++ /dev/null @@ -1,19 +0,0 @@ -{% set itemsByYear = items | organizeByDate %} -{% set years = itemsByYear | keys | sort("desc") %} -
- {% for year in years %} - {% set itemsInYear = itemsByYear[year] %} -
-

{{ year }}

-
-
- {% for item in itemsInYear %} -
- {{ item.data.title }} -
-

{{ item.date | formatDate("MM/DD") }}

-
- {% endfor %} -
- {% endfor %} -
diff --git a/src/_includes/partials/catalogue.html b/src/_includes/partials/catalogue.html deleted file mode 100644 index 6bde1ab..0000000 --- a/src/_includes/partials/catalogue.html +++ /dev/null @@ -1,21 +0,0 @@ -{% set itemsByYear = items | organizeByDate %} -{% set years = itemsByYear | keys | sort("desc") %} -
- {% for year in years %} - {% set itemsInYear = itemsByYear[year] %} -
-

{{ year }}

-
-
- {% for item in itemsInYear %} - {% set type = item.data.tags[1] %} -
- {{ item.data.title }} -
-

{{ type }}

-

{{ item.date | formatDate("MM/DD") }}

-
- {% endfor %} -
- {% endfor %} -
diff --git a/src/posts/switching-to-protonmail.md b/src/posts/2018-11-24-switching-to-protonmail.md similarity index 99% rename from src/posts/switching-to-protonmail.md rename to src/posts/2018-11-24-switching-to-protonmail.md index ae98c11..74105c1 100644 --- a/src/posts/switching-to-protonmail.md +++ b/src/posts/2018-11-24-switching-to-protonmail.md @@ -1,6 +1,5 @@ --- title: Switching from Gmail to ProtonMail -date: 2018-11-24 excerpt: The beginning of a quest to take back my data. tags: [email, protonmail] --- diff --git a/src/posts/my-vinyl-journey.md b/src/posts/2018-12-09-my-vinyl-journey.md similarity index 99% rename from src/posts/my-vinyl-journey.md rename to src/posts/2018-12-09-my-vinyl-journey.md index 64b18dd..8eb39c4 100644 --- a/src/posts/my-vinyl-journey.md +++ b/src/posts/2018-12-09-my-vinyl-journey.md @@ -1,6 +1,5 @@ --- title: My vinyl journey -date: 2018-12-09 excerpt: A cautionary tale of getting into collecting records. tags: ["music", "vinyl", "collecting"] --- diff --git a/src/posts/professional-development-in-2018.md b/src/posts/2019-01-07-professional-development-in-2018.md similarity index 99% rename from src/posts/professional-development-in-2018.md rename to src/posts/2019-01-07-professional-development-in-2018.md index 71ea340..ba371b7 100644 --- a/src/posts/professional-development-in-2018.md +++ b/src/posts/2019-01-07-professional-development-in-2018.md @@ -1,6 +1,5 @@ --- title: Professional development in 2018 -date: 2019-01-07 excerpt: A look back at what happened in 2018 - professionally. For me. tags: ["personal", "career", "growth", "react"] --- diff --git a/src/posts/how-this-blog-works.md b/src/posts/2019-04-13-how-this-blog-works.md similarity index 99% rename from src/posts/how-this-blog-works.md rename to src/posts/2019-04-13-how-this-blog-works.md index 1b388a7..62edea2 100644 --- a/src/posts/how-this-blog-works.md +++ b/src/posts/2019-04-13-how-this-blog-works.md @@ -1,6 +1,5 @@ --- title: How this blog works -date: 2019-04-13 excerpt: Everything powering this blog explained. tags: ["gatsbyjs", "ssg", "react"] --- diff --git a/src/posts/apple-watch-thoughts-2019.md b/src/posts/2019-05-20-apple-watch-thoughts.md similarity index 99% rename from src/posts/apple-watch-thoughts-2019.md rename to src/posts/2019-05-20-apple-watch-thoughts.md index 4ca1519..08c5cc8 100644 --- a/src/posts/apple-watch-thoughts-2019.md +++ b/src/posts/2019-05-20-apple-watch-thoughts.md @@ -1,6 +1,5 @@ --- title: Thoughts on the Apple Watch -date: 2019-05-20 excerpt: My experience with the Series 3 Apple Watch, 11 months later. tags: ["apple watch", "apple"] --- diff --git a/src/posts/coming-back-to-vinyl.md b/src/posts/2019-09-14-coming-back-to-vinyl.md similarity index 99% rename from src/posts/coming-back-to-vinyl.md rename to src/posts/2019-09-14-coming-back-to-vinyl.md index 8d062e8..fe556d8 100644 --- a/src/posts/coming-back-to-vinyl.md +++ b/src/posts/2019-09-14-coming-back-to-vinyl.md @@ -1,6 +1,5 @@ --- title: Coming back to vinyl -date: 2019-09-14 excerpt: Sometimes minimalism goes too far. tags: ["vinyl", "collecting", "minimalism"] --- diff --git a/src/posts/the-suspense-is-killing-me.md b/src/posts/2019-10-26-the-suspense-is-killing-me.md similarity index 99% rename from src/posts/the-suspense-is-killing-me.md rename to src/posts/2019-10-26-the-suspense-is-killing-me.md index 2f3f970..5840e36 100644 --- a/src/posts/the-suspense-is-killing-me.md +++ b/src/posts/2019-10-26-the-suspense-is-killing-me.md @@ -1,6 +1,5 @@ --- title: How does React's Suspense work? -date: 2019-10-26 excerpt: The Suspense is killing me. tags: ["react"] --- diff --git a/src/posts/professional-development-in-2019.md b/src/posts/2020-01-23-professional-development-in-2019.md similarity index 99% rename from src/posts/professional-development-in-2019.md rename to src/posts/2020-01-23-professional-development-in-2019.md index 783a0e5..d15a957 100644 --- a/src/posts/professional-development-in-2019.md +++ b/src/posts/2020-01-23-professional-development-in-2019.md @@ -1,6 +1,5 @@ --- title: Professional development in 2019 -date: 2020-01-23 excerpt: A look back at what happened in 2019 - professionally. For me. tags: ["career", "growth", "personal", "react", "swift"] --- diff --git a/src/posts/recently-05-2020.md b/src/posts/2020-05-18-recently-05-2020.md similarity index 99% rename from src/posts/recently-05-2020.md rename to src/posts/2020-05-18-recently-05-2020.md index 1c15059..ec0217b 100644 --- a/src/posts/recently-05-2020.md +++ b/src/posts/2020-05-18-recently-05-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-05-18 excerpt: May 2020. tags: ["recently"] --- diff --git a/src/posts/recently-06-2020.md b/src/posts/2020-06-02-recently-06-2020.md similarity index 99% rename from src/posts/recently-06-2020.md rename to src/posts/2020-06-02-recently-06-2020.md index 6d010aa..0ac5e53 100644 --- a/src/posts/recently-06-2020.md +++ b/src/posts/2020-06-02-recently-06-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-06-02 excerpt: June 2020. tags: ["recently"] --- diff --git a/src/posts/recently-07-2020.md b/src/posts/2020-07-04-recently-07-2020.md similarity index 99% rename from src/posts/recently-07-2020.md rename to src/posts/2020-07-04-recently-07-2020.md index e7c73df..f5547cd 100644 --- a/src/posts/recently-07-2020.md +++ b/src/posts/2020-07-04-recently-07-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-07-04 excerpt: July 2020. tags: ["recently"] --- diff --git a/src/posts/take-the-power-back-music.md b/src/posts/2020-07-26-take-the-power-back-music.md similarity index 99% rename from src/posts/take-the-power-back-music.md rename to src/posts/2020-07-26-take-the-power-back-music.md index 4dbd0b3..e0e0dbc 100644 --- a/src/posts/take-the-power-back-music.md +++ b/src/posts/2020-07-26-take-the-power-back-music.md @@ -1,6 +1,5 @@ --- title: Take The Power Back (Over My Music) -date: 2020-07-26 excerpt: One guy's struggle to regain ownership of some MP3 files. tags: ["music", "beets", "plex"] youtube: true diff --git a/src/posts/recently-08-2020.md b/src/posts/2020-08-02-recently-08-2020.md similarity index 99% rename from src/posts/recently-08-2020.md rename to src/posts/2020-08-02-recently-08-2020.md index 677d6ab..be73390 100644 --- a/src/posts/recently-08-2020.md +++ b/src/posts/2020-08-02-recently-08-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-08-02 excerpt: August 2020. tags: ["recently"] --- diff --git a/src/posts/give-in-to-feel-good.md b/src/posts/2020-08-16-give-in-to-feel-good.md similarity index 99% rename from src/posts/give-in-to-feel-good.md rename to src/posts/2020-08-16-give-in-to-feel-good.md index 27c8b2c..c6acff2 100644 --- a/src/posts/give-in-to-feel-good.md +++ b/src/posts/2020-08-16-give-in-to-feel-good.md @@ -1,6 +1,5 @@ --- title: Give In to Feel Good -date: 2020-08-16 excerpt: Procrastination isn’t just about laziness, is it? tags: ["procrastination", "mental health"] youtube: true diff --git a/src/posts/recently-09-2020.md b/src/posts/2020-09-02-recently-09-2020.md similarity index 99% rename from src/posts/recently-09-2020.md rename to src/posts/2020-09-02-recently-09-2020.md index ece21b9..4d3dea7 100644 --- a/src/posts/recently-09-2020.md +++ b/src/posts/2020-09-02-recently-09-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-09-02 excerpt: September 2020. tags: ["recently"] --- diff --git a/src/posts/whats-next-09-2020.md b/src/posts/2020-09-13-whats-next.md similarity index 99% rename from src/posts/whats-next-09-2020.md rename to src/posts/2020-09-13-whats-next.md index 0d63d94..db8e63c 100644 --- a/src/posts/whats-next-09-2020.md +++ b/src/posts/2020-09-13-whats-next.md @@ -1,6 +1,5 @@ --- title: What’s Next? -date: 2020-09-13 excerpt: From one framework to another. tags: ["nextjs", "gatsbyjs", "tailwind"] --- diff --git a/src/posts/recently-10-2020.md b/src/posts/2020-10-04-recently-10-2020.md similarity index 99% rename from src/posts/recently-10-2020.md rename to src/posts/2020-10-04-recently-10-2020.md index fb996b8..42f6742 100644 --- a/src/posts/recently-10-2020.md +++ b/src/posts/2020-10-04-recently-10-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-10-04 excerpt: October 2020. tags: ["recently"] --- diff --git a/src/posts/recently-11-2020.md b/src/posts/2020-11-06-recently-11-2020.md similarity index 99% rename from src/posts/recently-11-2020.md rename to src/posts/2020-11-06-recently-11-2020.md index 1b523d0..f8d7795 100644 --- a/src/posts/recently-11-2020.md +++ b/src/posts/2020-11-06-recently-11-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-11-06 excerpt: November 2020. tags: ["recently"] --- diff --git a/src/posts/recently-12-2020.md b/src/posts/2020-12-07-recently-12-2020.md similarity index 99% rename from src/posts/recently-12-2020.md rename to src/posts/2020-12-07-recently-12-2020.md index db6a915..0f9df55 100644 --- a/src/posts/recently-12-2020.md +++ b/src/posts/2020-12-07-recently-12-2020.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2020-12-07 excerpt: December 2020. tags: ["recently"] --- diff --git a/src/posts/2020-in-review-01-2021.md b/src/posts/2021-01-09-2020-in-review.md similarity index 99% rename from src/posts/2020-in-review-01-2021.md rename to src/posts/2021-01-09-2020-in-review.md index a560b90..d3eaa0f 100644 --- a/src/posts/2020-in-review-01-2021.md +++ b/src/posts/2021-01-09-2020-in-review.md @@ -1,6 +1,5 @@ --- title: "2020: In Review" -date: 2021-01-09 excerpt: A remarkable year. tags: ["year recap"] --- diff --git a/src/posts/tadpoles-the-big-little-migration-01-2021.md b/src/posts/2021-01-10-tadpoles-the-big-little-migration.md similarity index 97% rename from src/posts/tadpoles-the-big-little-migration-01-2021.md rename to src/posts/2021-01-10-tadpoles-the-big-little-migration.md index a3e2a27..fe38b04 100644 --- a/src/posts/tadpoles-the-big-little-migration-01-2021.md +++ b/src/posts/2021-01-10-tadpoles-the-big-little-migration.md @@ -1,6 +1,5 @@ --- title: "Tadpoles: The Big Little Migration" -date: 2021-01-10 excerpt: A short film about frogs. tags: ["short film", "frogs"] youtube: true diff --git a/src/posts/remember-to-be-nice-01-2021.md b/src/posts/2021-01-12-remember-to-be-nice.md similarity index 99% rename from src/posts/remember-to-be-nice-01-2021.md rename to src/posts/2021-01-12-remember-to-be-nice.md index 911bd47..5321e83 100644 --- a/src/posts/remember-to-be-nice-01-2021.md +++ b/src/posts/2021-01-12-remember-to-be-nice.md @@ -1,6 +1,5 @@ --- title: Remember to be nice -date: 2021-01-12 excerpt: Open source is often a thankless job. tags: ["open source", "signal"] --- diff --git a/src/posts/a-primer-on-canadian-government-01-2021.md b/src/posts/2021-01-27-a-primer-on-canadian-government.md similarity index 99% rename from src/posts/a-primer-on-canadian-government-01-2021.md rename to src/posts/2021-01-27-a-primer-on-canadian-government.md index 604edb2..8c7a31a 100644 --- a/src/posts/a-primer-on-canadian-government-01-2021.md +++ b/src/posts/2021-01-27-a-primer-on-canadian-government.md @@ -1,6 +1,5 @@ --- title: A Primer on Canadian Government -date: "2021-01-27" excerpt: Canada’s parliamentary system explained. tags: ["canada", "government"] favourite: true diff --git a/src/posts/recently-01-2021.md b/src/posts/2021-02-01-recently-02-2021.md similarity index 99% rename from src/posts/recently-01-2021.md rename to src/posts/2021-02-01-recently-02-2021.md index eaa49aa..d559c6b 100644 --- a/src/posts/recently-01-2021.md +++ b/src/posts/2021-02-01-recently-02-2021.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2021-02-01 excerpt: January 2021. tags: ["recently"] --- diff --git a/src/posts/recently-03-2021.md b/src/posts/2021-03-05-recently-03-2021.md similarity index 99% rename from src/posts/recently-03-2021.md rename to src/posts/2021-03-05-recently-03-2021.md index 857cf51..7509da2 100644 --- a/src/posts/recently-03-2021.md +++ b/src/posts/2021-03-05-recently-03-2021.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2021-03-05 excerpt: February 2021. tags: ["recently", "valheim"] youtube: true diff --git a/src/posts/recently-04-2021.md b/src/posts/2021-04-01-recently-04-2021.md similarity index 99% rename from src/posts/recently-04-2021.md rename to src/posts/2021-04-01-recently-04-2021.md index fc6d948..9e4e2f1 100644 --- a/src/posts/recently-04-2021.md +++ b/src/posts/2021-04-01-recently-04-2021.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2021-04-01T19:03:49.841Z excerpt: March 2021. tags: ["recently", "valheim"] youtube: true diff --git a/src/posts/my-vim-setup-04-2021.md b/src/posts/2021-04-18-my-vim-setup.md similarity index 99% rename from src/posts/my-vim-setup-04-2021.md rename to src/posts/2021-04-18-my-vim-setup.md index 5fc7681..58bf70d 100644 --- a/src/posts/my-vim-setup-04-2021.md +++ b/src/posts/2021-04-18-my-vim-setup.md @@ -1,7 +1,5 @@ --- title: My vim setup -draft: false -date: 2021-04-18T20:24:10.177Z excerpt: Everybody does it differently. tags: ["vim", "development"] --- diff --git a/src/posts/recently-05-2021.md b/src/posts/2021-05-01-recently-05-2021.md similarity index 99% rename from src/posts/recently-05-2021.md rename to src/posts/2021-05-01-recently-05-2021.md index 11ee686..4e1e385 100644 --- a/src/posts/recently-05-2021.md +++ b/src/posts/2021-05-01-recently-05-2021.md @@ -1,7 +1,5 @@ --- title: Recently -draft: false -date: 2021-05-01T19:03:49.841Z excerpt: April 2021. tags: ["recently"] youtube: true diff --git a/src/posts/recently-06-2021.md b/src/posts/2021-06-01-recently-06-2021.md similarity index 99% rename from src/posts/recently-06-2021.md rename to src/posts/2021-06-01-recently-06-2021.md index 1648f96..9e69c1e 100644 --- a/src/posts/recently-06-2021.md +++ b/src/posts/2021-06-01-recently-06-2021.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2021-06-01T19:03:49.841Z excerpt: May 2021. tags: ["recently"] --- diff --git a/src/posts/gmtk-post-mortem-2021.md b/src/posts/2021-07-03-gmtk-post-mortem.md similarity index 99% rename from src/posts/gmtk-post-mortem-2021.md rename to src/posts/2021-07-03-gmtk-post-mortem.md index 966204f..a0e6ad3 100644 --- a/src/posts/gmtk-post-mortem-2021.md +++ b/src/posts/2021-07-03-gmtk-post-mortem.md @@ -1,6 +1,5 @@ --- title: "GMTK Game Jam Post-Mortem" -date: "2021-07-03T07:25:56.354Z" excerpt: My first game jam ever. tags: ["gamejam", "gamedev"] favourite: true diff --git a/src/posts/recently-07-2021.md b/src/posts/2021-07-05-recently-07-2021.md similarity index 98% rename from src/posts/recently-07-2021.md rename to src/posts/2021-07-05-recently-07-2021.md index 7d35206..b687c3e 100644 --- a/src/posts/recently-07-2021.md +++ b/src/posts/2021-07-05-recently-07-2021.md @@ -1,7 +1,5 @@ --- title: Recently -draft: false -date: 2021-07-05T00:11:37+00:00 excerpt: June 2021. tags: ["recently"] --- diff --git a/src/posts/weaknotes-1.md b/src/posts/2021-08-15-weaknotes-1.md similarity index 98% rename from src/posts/weaknotes-1.md rename to src/posts/2021-08-15-weaknotes-1.md index 8dfdc03..1994191 100644 --- a/src/posts/weaknotes-1.md +++ b/src/posts/2021-08-15-weaknotes-1.md @@ -1,6 +1,5 @@ --- title: Week 1 -date: 2021-08-15T19:01:49.565Z excerpt: A new week, a new format. tags: ["weaknotes"] --- diff --git a/src/posts/weaknotes-2.md b/src/posts/2021-08-22-weaknotes-2.md similarity index 99% rename from src/posts/weaknotes-2.md rename to src/posts/2021-08-22-weaknotes-2.md index 503fc2b..d0b45d3 100644 --- a/src/posts/weaknotes-2.md +++ b/src/posts/2021-08-22-weaknotes-2.md @@ -1,6 +1,5 @@ --- title: Week 2 -date: 2021-08-22T22:58:02.387Z excerpt: Bit of a weird week. tags: ["weaknotes"] --- diff --git a/src/posts/weaknotes-3.md b/src/posts/2021-08-30-weaknotes-3.md similarity index 99% rename from src/posts/weaknotes-3.md rename to src/posts/2021-08-30-weaknotes-3.md index 1af050a..d31f3f4 100644 --- a/src/posts/weaknotes-3.md +++ b/src/posts/2021-08-30-weaknotes-3.md @@ -1,6 +1,5 @@ --- title: Week 3 -date: 2021-08-30T00:07:20.030Z excerpt: The One Where Apple Sucks A Lot. tags: ["weaknotes"] --- diff --git a/src/posts/weaknotes-4.md b/src/posts/2021-09-13-weaknotes-4.md similarity index 97% rename from src/posts/weaknotes-4.md rename to src/posts/2021-09-13-weaknotes-4.md index b7dbb52..6e6a030 100644 --- a/src/posts/weaknotes-4.md +++ b/src/posts/2021-09-13-weaknotes-4.md @@ -1,6 +1,5 @@ --- title: Week 4 -date: 2021-09-13T00:07:20.030Z excerpt: It's the fourth one. tags: ["weaknotes"] --- diff --git a/src/posts/version-2-09-2021.md b/src/posts/2021-09-19-version-2.md similarity index 99% rename from src/posts/version-2-09-2021.md rename to src/posts/2021-09-19-version-2.md index 4016d4d..0db7627 100644 --- a/src/posts/version-2-09-2021.md +++ b/src/posts/2021-09-19-version-2.md @@ -1,6 +1,5 @@ --- title: Version 2 -date: 2021-09-19T00:50:06.409Z excerpt: Electric boogaloo. tags: ["mdx", "development", "netlify", "eslint"] --- diff --git a/src/posts/stray-thoughts-1-09-2021.md b/src/posts/2021-09-27-stray-thoughts-1.md similarity index 99% rename from src/posts/stray-thoughts-1-09-2021.md rename to src/posts/2021-09-27-stray-thoughts-1.md index 897ba66..7e8fa6a 100644 --- a/src/posts/stray-thoughts-1-09-2021.md +++ b/src/posts/2021-09-27-stray-thoughts-1.md @@ -1,6 +1,5 @@ --- title: Stray Thoughts 1 -date: 2021-09-27T19:42:32.596Z excerpt: I can't decide what to call my weekly posts anymore. tags: ["stray thoughts"] --- diff --git a/src/posts/stray-thoughts-2-10-2021.md b/src/posts/2021-10-03-stray-thoughts-2.md similarity index 98% rename from src/posts/stray-thoughts-2-10-2021.md rename to src/posts/2021-10-03-stray-thoughts-2.md index e940283..e352d2e 100644 --- a/src/posts/stray-thoughts-2-10-2021.md +++ b/src/posts/2021-10-03-stray-thoughts-2.md @@ -1,6 +1,5 @@ --- title: Stray Thoughts 2 -date: 2021-10-03T22:35:21.592Z excerpt: Are collected thoughts really stray? tags: ["stray thoughts"] --- diff --git a/src/posts/stray-thoughts-3-10-2021.md b/src/posts/2021-10-12-stray-thoughts-3.md similarity index 98% rename from src/posts/stray-thoughts-3-10-2021.md rename to src/posts/2021-10-12-stray-thoughts-3.md index 4c750d6..4360d52 100644 --- a/src/posts/stray-thoughts-3-10-2021.md +++ b/src/posts/2021-10-12-stray-thoughts-3.md @@ -1,6 +1,5 @@ --- title: Stray Thoughts 3 -date: 2021-10-12T16:54:44.498Z excerpt: Sweater weather is here! tags: ["stray thoughts"] --- diff --git a/src/posts/checking-in-11-2021.md b/src/posts/2021-11-24-checking-in.md similarity index 99% rename from src/posts/checking-in-11-2021.md rename to src/posts/2021-11-24-checking-in.md index 3852a4d..81eb5e2 100644 --- a/src/posts/checking-in-11-2021.md +++ b/src/posts/2021-11-24-checking-in.md @@ -1,6 +1,5 @@ --- title: Checking In -date: 2021-11-24T07:03:52.766Z excerpt: Kept you waiting, huh? tags: ["checking in"] --- diff --git a/src/posts/2021-ranked-games-01-2022.md b/src/posts/2022-01-18-2021-ranked-games.md similarity index 99% rename from src/posts/2021-ranked-games-01-2022.md rename to src/posts/2022-01-18-2021-ranked-games.md index 5643eb8..3a0a88f 100644 --- a/src/posts/2021-ranked-games-01-2022.md +++ b/src/posts/2022-01-18-2021-ranked-games.md @@ -1,6 +1,5 @@ --- title: "2021 Ranked: Games" -date: 2022-01-18T20:52:22.166Z excerpt: All of the games I played in 2021. Ranked. tags: ["rankings"] --- diff --git a/src/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md b/src/posts/2022-01-22-the-fellow-stagg-a-review-of-the-details.md similarity index 99% rename from src/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md rename to src/posts/2022-01-22-the-fellow-stagg-a-review-of-the-details.md index 16bd48c..95654db 100644 --- a/src/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md +++ b/src/posts/2022-01-22-the-fellow-stagg-a-review-of-the-details.md @@ -1,6 +1,5 @@ --- title: "The Fellow Stagg: A Review of the Details" -date: 2022-01-22T21:35:22.320Z excerpt: Is it the Apple of kettles? tags: ["tea", "reviews"] --- diff --git a/src/posts/recently-02-2022.md b/src/posts/2022-02-01-recently-02-2022.md similarity index 99% rename from src/posts/recently-02-2022.md rename to src/posts/2022-02-01-recently-02-2022.md index b111022..1c715b1 100644 --- a/src/posts/recently-02-2022.md +++ b/src/posts/2022-02-01-recently-02-2022.md @@ -1,6 +1,5 @@ --- title: Recently -date: 2022-02-01T23:49:47.158Z excerpt: February 2022. tags: ["recently"] youtube: true diff --git a/src/posts/its-been-a-while-10-2022.md b/src/posts/2022-10-02-its-been-a-while.md similarity index 99% rename from src/posts/its-been-a-while-10-2022.md rename to src/posts/2022-10-02-its-been-a-while.md index ea33561..1c942c3 100644 --- a/src/posts/its-been-a-while-10-2022.md +++ b/src/posts/2022-10-02-its-been-a-while.md @@ -1,6 +1,5 @@ --- title: "It's Been a While" -date: 2022-10-02T03:07:55.330Z excerpt: February 2022 - September 2022. tags: ["gba", "updates", "burnout"] --- diff --git a/src/posts/lately-01-2024.md b/src/posts/2024-01-02-lately.md similarity index 99% rename from src/posts/lately-01-2024.md rename to src/posts/2024-01-02-lately.md index d2e4fc2..c8baac2 100644 --- a/src/posts/lately-01-2024.md +++ b/src/posts/2024-01-02-lately.md @@ -1,6 +1,5 @@ --- title: Lately -date: 2024-01-02T03:36:21.754Z excerpt: Kept you waiting, huh? tags: ["updates"] --- diff --git a/src/posts/the-photography-behind-earthrise-02-2024.md b/src/posts/2024-02-13-the-photography-behind-earthrise.md similarity index 98% rename from src/posts/the-photography-behind-earthrise-02-2024.md rename to src/posts/2024-02-13-the-photography-behind-earthrise.md index bfc21f8..0473516 100644 --- a/src/posts/the-photography-behind-earthrise-02-2024.md +++ b/src/posts/2024-02-13-the-photography-behind-earthrise.md @@ -1,6 +1,5 @@ --- title: "The photography behind Earthrise" -date: 2024-02-13 excerpt: "Turns out there's more to it than just snapping a pic" youtube: true tags: ["space", "nasa", "photography"] diff --git a/src/posts/on-a-silver-platter.md b/src/posts/2024-02-26-on-a-silver-platter.md similarity index 99% rename from src/posts/on-a-silver-platter.md rename to src/posts/2024-02-26-on-a-silver-platter.md index 6581397..013c535 100644 --- a/src/posts/on-a-silver-platter.md +++ b/src/posts/2024-02-26-on-a-silver-platter.md @@ -1,6 +1,5 @@ --- title: On a silver platter -date: 2024-02-26 excerpt: Or how Trudeau is giving away the election. tags: ["canada", "politics", "arrivecan"] --- diff --git a/src/tag.html b/src/tag.html index 7aab684..b1c659a 100644 --- a/src/tag.html +++ b/src/tag.html @@ -9,9 +9,19 @@ pagination: permalink: /tags/{{ tag | slugify }}/index.html --- +{% from "macros/posts.njk" import list %}

Tag: {{ tag }}

All posts tagged with "{{ tag }}", or go back to all tags.

-{% set items = collections.postsByTag[ tag ] %} -{% include "partials/archive.html" %} +{% set itemsByYear = collections.postsByTag[tag] | reverse | organizeByDate %} +{% set years = itemsByYear | keys | sort("desc") %} +
+ {% for year in years %} + {% set itemsInYear = itemsByYear[year] %} +

{{ year }}

+
+ {{ list(itemsInYear) }} +
+ {% endfor %} +