diff --git a/config/filters/index.js b/config/filters/index.js index 892a4bc..767b4d6 100644 --- a/config/filters/index.js +++ b/config/filters/index.js @@ -85,6 +85,8 @@ const filterCatalogueTags = (tags) => { return filter(tags, [tags[0], tags[1]]); }; +const limit = (collection, limit = 5) => collection.slice(0, limit); + module.exports = { allTagCounts, allTags, @@ -93,6 +95,7 @@ module.exports = { filterCatalogueTags, formatDate, keys, + limit, minifyCss, organizeByDate, pluralize, diff --git a/eleventy.config.js b/eleventy.config.js index 11087fa..881cfb1 100644 --- a/eleventy.config.js +++ b/eleventy.config.js @@ -16,6 +16,7 @@ const { filter, pluralize, filterCatalogueTags, + limit, } = require("./config/filters/index.js"); const markdown = require("./config/plugins/markdown.js"); const imageShortcode = require("./config/shortcodes/image.js"); @@ -38,6 +39,7 @@ module.exports = (eleventyConfig) => { eleventyConfig.addFilter("filterCatalogueTags", filterCatalogueTags); eleventyConfig.addFilter("formatDate", formatDate); eleventyConfig.addFilter("keys", keys); + eleventyConfig.addFilter("limit", limit); eleventyConfig.addFilter("minifyCss", minifyCss); eleventyConfig.addFilter("organizeByDate", organizeByDate); eleventyConfig.addFilter("values", values); diff --git a/src/content/pages/404.html b/src/404.html similarity index 94% rename from src/content/pages/404.html rename to src/404.html index 2cdc034..0a1094e 100644 --- a/src/content/pages/404.html +++ b/src/404.html @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /404.html youtube: true --- diff --git a/src/content/pages/about.md b/src/about.md similarity index 98% rename from src/content/pages/about.md rename to src/about.md index 8e6ddfa..022ab67 100644 --- a/src/content/pages/about.md +++ b/src/about.md @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /about/index.html title: About --- diff --git a/src/content/pages/blogroll.html b/src/blogroll.html similarity index 96% rename from src/content/pages/blogroll.html rename to src/blogroll.html index abb4d4a..4639f0c 100644 --- a/src/content/pages/blogroll.html +++ b/src/blogroll.html @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /blogroll/index.html title: Blogroll --- diff --git a/src/content/catalogue/books/astrophyics-for-people.md b/src/catalogue/books/astrophyics-for-people.md similarity index 100% rename from src/content/catalogue/books/astrophyics-for-people.md rename to src/catalogue/books/astrophyics-for-people.md diff --git a/src/content/catalogue/books/atomic-habits.md b/src/catalogue/books/atomic-habits.md similarity index 100% rename from src/content/catalogue/books/atomic-habits.md rename to src/catalogue/books/atomic-habits.md diff --git a/src/content/catalogue/books/books.11tydata.js b/src/catalogue/books/books.11tydata.js similarity index 100% rename from src/content/catalogue/books/books.11tydata.js rename to src/catalogue/books/books.11tydata.js diff --git a/src/content/catalogue/books/dare-to-lead.md b/src/catalogue/books/dare-to-lead.md similarity index 100% rename from src/content/catalogue/books/dare-to-lead.md rename to src/catalogue/books/dare-to-lead.md diff --git a/src/content/catalogue/books/deep-work.md b/src/catalogue/books/deep-work.md similarity index 100% rename from src/content/catalogue/books/deep-work.md rename to src/catalogue/books/deep-work.md diff --git a/src/content/catalogue/books/digital-minimalism.md b/src/catalogue/books/digital-minimalism.md similarity index 100% rename from src/content/catalogue/books/digital-minimalism.md rename to src/catalogue/books/digital-minimalism.md diff --git a/src/content/catalogue/books/effective-engineer.md b/src/catalogue/books/effective-engineer.md similarity index 100% rename from src/content/catalogue/books/effective-engineer.md rename to src/catalogue/books/effective-engineer.md diff --git a/src/content/catalogue/books/ego-is-the-enemy.md b/src/catalogue/books/ego-is-the-enemy.md similarity index 100% rename from src/content/catalogue/books/ego-is-the-enemy.md rename to src/catalogue/books/ego-is-the-enemy.md diff --git a/src/content/catalogue/books/jim-butcher-peace-talks.md b/src/catalogue/books/jim-butcher-peace-talks.md similarity index 100% rename from src/content/catalogue/books/jim-butcher-peace-talks.md rename to src/catalogue/books/jim-butcher-peace-talks.md diff --git a/src/content/catalogue/books/joshua-whitehead-jonny-appleseed.md b/src/catalogue/books/joshua-whitehead-jonny-appleseed.md similarity index 100% rename from src/content/catalogue/books/joshua-whitehead-jonny-appleseed.md rename to src/catalogue/books/joshua-whitehead-jonny-appleseed.md diff --git a/src/content/catalogue/books/meditations.md b/src/catalogue/books/meditations.md similarity index 100% rename from src/content/catalogue/books/meditations.md rename to src/catalogue/books/meditations.md diff --git a/src/content/catalogue/books/scott-mccloud-understanding-comics.md b/src/catalogue/books/scott-mccloud-understanding-comics.md similarity index 100% rename from src/content/catalogue/books/scott-mccloud-understanding-comics.md rename to src/catalogue/books/scott-mccloud-understanding-comics.md diff --git a/src/content/catalogue/books/the-big-leap.md b/src/catalogue/books/the-big-leap.md similarity index 100% rename from src/content/catalogue/books/the-big-leap.md rename to src/catalogue/books/the-big-leap.md diff --git a/src/content/catalogue/books/the-dip.md b/src/catalogue/books/the-dip.md similarity index 100% rename from src/content/catalogue/books/the-dip.md rename to src/catalogue/books/the-dip.md diff --git a/src/content/catalogue/books/the-hate-u-give.md b/src/catalogue/books/the-hate-u-give.md similarity index 100% rename from src/content/catalogue/books/the-hate-u-give.md rename to src/catalogue/books/the-hate-u-give.md diff --git a/src/content/catalogue/books/the-skin-were-in.md b/src/catalogue/books/the-skin-were-in.md similarity index 100% rename from src/content/catalogue/books/the-skin-were-in.md rename to src/catalogue/books/the-skin-were-in.md diff --git a/src/content/catalogue/books/the-subtle-art.md b/src/catalogue/books/the-subtle-art.md similarity index 100% rename from src/content/catalogue/books/the-subtle-art.md rename to src/catalogue/books/the-subtle-art.md diff --git a/src/content/catalogue/books/the-total-money-makeover.md b/src/catalogue/books/the-total-money-makeover.md similarity index 100% rename from src/content/catalogue/books/the-total-money-makeover.md rename to src/catalogue/books/the-total-money-makeover.md diff --git a/src/content/catalogue/books/the-way-of-kings.md b/src/catalogue/books/the-way-of-kings.md similarity index 100% rename from src/content/catalogue/books/the-way-of-kings.md rename to src/catalogue/books/the-way-of-kings.md diff --git a/src/content/catalogue/books/victoria-ortiz-dissenter-on-the-bench.md b/src/catalogue/books/victoria-ortiz-dissenter-on-the-bench.md similarity index 100% rename from src/content/catalogue/books/victoria-ortiz-dissenter-on-the-bench.md rename to src/catalogue/books/victoria-ortiz-dissenter-on-the-bench.md diff --git a/src/content/catalogue/books/what-we-don’t-talk-about-when-we-talk-about-fat-aubrey-gordon.md b/src/catalogue/books/what-we-don’t-talk-about-when-we-talk-about-fat-aubrey-gordon.md similarity index 100% rename from src/content/catalogue/books/what-we-don’t-talk-about-when-we-talk-about-fat-aubrey-gordon.md rename to src/catalogue/books/what-we-don’t-talk-about-when-we-talk-about-fat-aubrey-gordon.md diff --git a/src/content/catalogue/books/why-we-get-fat.md b/src/catalogue/books/why-we-get-fat.md similarity index 100% rename from src/content/catalogue/books/why-we-get-fat.md rename to src/catalogue/books/why-we-get-fat.md diff --git a/src/content/catalogue/books/why-we-sleep.md b/src/catalogue/books/why-we-sleep.md similarity index 100% rename from src/content/catalogue/books/why-we-sleep.md rename to src/catalogue/books/why-we-sleep.md diff --git a/src/content/catalogue/catalogue.json b/src/catalogue/catalogue.json similarity index 100% rename from src/content/catalogue/catalogue.json rename to src/catalogue/catalogue.json diff --git a/src/content/catalogue/comics/comics.11tydata.js b/src/catalogue/comics/comics.11tydata.js similarity index 100% rename from src/content/catalogue/comics/comics.11tydata.js rename to src/catalogue/comics/comics.11tydata.js diff --git a/src/content/catalogue/comics/monstress-image-1.md b/src/catalogue/comics/monstress-image-1.md similarity index 100% rename from src/content/catalogue/comics/monstress-image-1.md rename to src/catalogue/comics/monstress-image-1.md diff --git a/src/content/catalogue/comics/monstress-the-blood-image-comics-2.md b/src/catalogue/comics/monstress-the-blood-image-comics-2.md similarity index 100% rename from src/content/catalogue/comics/monstress-the-blood-image-comics-2.md rename to src/catalogue/comics/monstress-the-blood-image-comics-2.md diff --git a/src/content/catalogue/comics/the-monster-sisters-orca-books.md b/src/catalogue/comics/the-monster-sisters-orca-books.md similarity index 100% rename from src/content/catalogue/comics/the-monster-sisters-orca-books.md rename to src/catalogue/comics/the-monster-sisters-orca-books.md diff --git a/src/content/catalogue/games/assassins-creed-black-flag.md b/src/catalogue/games/assassins-creed-black-flag.md similarity index 100% rename from src/content/catalogue/games/assassins-creed-black-flag.md rename to src/catalogue/games/assassins-creed-black-flag.md diff --git a/src/content/catalogue/games/axiom-verge.md b/src/catalogue/games/axiom-verge.md similarity index 100% rename from src/content/catalogue/games/axiom-verge.md rename to src/catalogue/games/axiom-verge.md diff --git a/src/content/catalogue/games/citizen-sleeper.md b/src/catalogue/games/citizen-sleeper.md similarity index 100% rename from src/content/catalogue/games/citizen-sleeper.md rename to src/catalogue/games/citizen-sleeper.md diff --git a/src/content/catalogue/games/donkey-kong-country-tropical-freeze.md b/src/catalogue/games/donkey-kong-country-tropical-freeze.md similarity index 100% rename from src/content/catalogue/games/donkey-kong-country-tropical-freeze.md rename to src/catalogue/games/donkey-kong-country-tropical-freeze.md diff --git a/src/content/catalogue/games/doom-2016.md b/src/catalogue/games/doom-2016.md similarity index 100% rename from src/content/catalogue/games/doom-2016.md rename to src/catalogue/games/doom-2016.md diff --git a/src/content/catalogue/games/fallout-4.md b/src/catalogue/games/fallout-4.md similarity index 100% rename from src/content/catalogue/games/fallout-4.md rename to src/catalogue/games/fallout-4.md diff --git a/src/content/catalogue/games/games.11tydata.js b/src/catalogue/games/games.11tydata.js similarity index 100% rename from src/content/catalogue/games/games.11tydata.js rename to src/catalogue/games/games.11tydata.js diff --git a/src/content/catalogue/games/her-story.md b/src/catalogue/games/her-story.md similarity index 100% rename from src/content/catalogue/games/her-story.md rename to src/catalogue/games/her-story.md diff --git a/src/content/catalogue/games/hyper-light-drifter.md b/src/catalogue/games/hyper-light-drifter.md similarity index 100% rename from src/content/catalogue/games/hyper-light-drifter.md rename to src/catalogue/games/hyper-light-drifter.md diff --git a/src/content/catalogue/games/majoras-mask-3d.md b/src/catalogue/games/majoras-mask-3d.md similarity index 100% rename from src/content/catalogue/games/majoras-mask-3d.md rename to src/catalogue/games/majoras-mask-3d.md diff --git a/src/content/catalogue/games/mario-and-luigi-dream-team.md b/src/catalogue/games/mario-and-luigi-dream-team.md similarity index 100% rename from src/content/catalogue/games/mario-and-luigi-dream-team.md rename to src/catalogue/games/mario-and-luigi-dream-team.md diff --git a/src/content/catalogue/games/middle-earth-shadow-of-mordor.md b/src/catalogue/games/middle-earth-shadow-of-mordor.md similarity index 100% rename from src/content/catalogue/games/middle-earth-shadow-of-mordor.md rename to src/catalogue/games/middle-earth-shadow-of-mordor.md diff --git a/src/content/catalogue/games/persona-3-portable.md b/src/catalogue/games/persona-3-portable.md similarity index 100% rename from src/content/catalogue/games/persona-3-portable.md rename to src/catalogue/games/persona-3-portable.md diff --git a/src/content/catalogue/games/persona-5.md b/src/catalogue/games/persona-5.md similarity index 100% rename from src/content/catalogue/games/persona-5.md rename to src/catalogue/games/persona-5.md diff --git a/src/content/catalogue/games/professor-layton-vs-phoenix-wright.md b/src/catalogue/games/professor-layton-vs-phoenix-wright.md similarity index 100% rename from src/content/catalogue/games/professor-layton-vs-phoenix-wright.md rename to src/catalogue/games/professor-layton-vs-phoenix-wright.md diff --git a/src/content/catalogue/games/shovel-knight.md b/src/catalogue/games/shovel-knight.md similarity index 100% rename from src/content/catalogue/games/shovel-knight.md rename to src/catalogue/games/shovel-knight.md diff --git a/src/content/catalogue/games/the-wonderful-101.md b/src/catalogue/games/the-wonderful-101.md similarity index 100% rename from src/content/catalogue/games/the-wonderful-101.md rename to src/catalogue/games/the-wonderful-101.md diff --git a/src/content/catalogue/games/tomb-raider.md b/src/catalogue/games/tomb-raider.md similarity index 100% rename from src/content/catalogue/games/tomb-raider.md rename to src/catalogue/games/tomb-raider.md diff --git a/src/content/catalogue/games/vanquish.md b/src/catalogue/games/vanquish.md similarity index 100% rename from src/content/catalogue/games/vanquish.md rename to src/catalogue/games/vanquish.md diff --git a/src/content/catalogue/games/yoshis-island.md b/src/catalogue/games/yoshis-island.md similarity index 100% rename from src/content/catalogue/games/yoshis-island.md rename to src/catalogue/games/yoshis-island.md diff --git a/src/content/catalogue/podcasts/9-12.md b/src/catalogue/podcasts/9-12.md similarity index 100% rename from src/content/catalogue/podcasts/9-12.md rename to src/catalogue/podcasts/9-12.md diff --git a/src/content/catalogue/podcasts/a-death-in-cryptoland.md b/src/catalogue/podcasts/a-death-in-cryptoland.md similarity index 100% rename from src/content/catalogue/podcasts/a-death-in-cryptoland.md rename to src/catalogue/podcasts/a-death-in-cryptoland.md diff --git a/src/content/catalogue/podcasts/boys-like-me.md b/src/catalogue/podcasts/boys-like-me.md similarity index 100% rename from src/content/catalogue/podcasts/boys-like-me.md rename to src/catalogue/podcasts/boys-like-me.md diff --git a/src/content/catalogue/podcasts/conversations-with-people-who-hate-me.md b/src/catalogue/podcasts/conversations-with-people-who-hate-me.md similarity index 100% rename from src/content/catalogue/podcasts/conversations-with-people-who-hate-me.md rename to src/catalogue/podcasts/conversations-with-people-who-hate-me.md diff --git a/src/content/catalogue/podcasts/history-of-the-90s.md b/src/catalogue/podcasts/history-of-the-90s.md similarity index 100% rename from src/content/catalogue/podcasts/history-of-the-90s.md rename to src/catalogue/podcasts/history-of-the-90s.md diff --git a/src/content/catalogue/podcasts/hunting-warhead.md b/src/catalogue/podcasts/hunting-warhead.md similarity index 100% rename from src/content/catalogue/podcasts/hunting-warhead.md rename to src/catalogue/podcasts/hunting-warhead.md diff --git a/src/content/catalogue/podcasts/if-books-could-kill.md b/src/catalogue/podcasts/if-books-could-kill.md similarity index 100% rename from src/content/catalogue/podcasts/if-books-could-kill.md rename to src/catalogue/podcasts/if-books-could-kill.md diff --git a/src/content/catalogue/podcasts/maintenance-phase.md b/src/catalogue/podcasts/maintenance-phase.md similarity index 100% rename from src/content/catalogue/podcasts/maintenance-phase.md rename to src/catalogue/podcasts/maintenance-phase.md diff --git a/src/content/catalogue/podcasts/podcasts.11tydata.js b/src/catalogue/podcasts/podcasts.11tydata.js similarity index 100% rename from src/content/catalogue/podcasts/podcasts.11tydata.js rename to src/catalogue/podcasts/podcasts.11tydata.js diff --git a/src/content/catalogue/podcasts/project-unabom.md b/src/catalogue/podcasts/project-unabom.md similarity index 100% rename from src/content/catalogue/podcasts/project-unabom.md rename to src/catalogue/podcasts/project-unabom.md diff --git a/src/content/catalogue/podcasts/redemption-of-jar-jar-binks.md b/src/catalogue/podcasts/redemption-of-jar-jar-binks.md similarity index 100% rename from src/content/catalogue/podcasts/redemption-of-jar-jar-binks.md rename to src/catalogue/podcasts/redemption-of-jar-jar-binks.md diff --git a/src/content/catalogue/podcasts/reply-all.md b/src/catalogue/podcasts/reply-all.md similarity index 100% rename from src/content/catalogue/podcasts/reply-all.md rename to src/catalogue/podcasts/reply-all.md diff --git a/src/content/catalogue/podcasts/running-from-cops.md b/src/catalogue/podcasts/running-from-cops.md similarity index 100% rename from src/content/catalogue/podcasts/running-from-cops.md rename to src/catalogue/podcasts/running-from-cops.md diff --git a/src/content/catalogue/podcasts/surviving-y2k.md b/src/catalogue/podcasts/surviving-y2k.md similarity index 100% rename from src/content/catalogue/podcasts/surviving-y2k.md rename to src/catalogue/podcasts/surviving-y2k.md diff --git a/src/content/catalogue/podcasts/the-flamethrowers.md b/src/catalogue/podcasts/the-flamethrowers.md similarity index 100% rename from src/content/catalogue/podcasts/the-flamethrowers.md rename to src/catalogue/podcasts/the-flamethrowers.md diff --git a/src/content/catalogue/podcasts/the-new-gurus.md b/src/catalogue/podcasts/the-new-gurus.md similarity index 100% rename from src/content/catalogue/podcasts/the-new-gurus.md rename to src/catalogue/podcasts/the-new-gurus.md diff --git a/src/content/catalogue/podcasts/youre-wrong-about.md b/src/catalogue/podcasts/youre-wrong-about.md similarity index 100% rename from src/content/catalogue/podcasts/youre-wrong-about.md rename to src/catalogue/podcasts/youre-wrong-about.md diff --git a/src/content/pages/colophon.md b/src/colophon.md similarity index 99% rename from src/content/pages/colophon.md rename to src/colophon.md index 1676f71..d07a972 100644 --- a/src/content/pages/colophon.md +++ b/src/colophon.md @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /colophon/index.html title: Colophon --- diff --git a/src/content/pages/index.html b/src/content/pages/index.html deleted file mode 100644 index d9a06a2..0000000 --- a/src/content/pages/index.html +++ /dev/null @@ -1,5 +0,0 @@ ---- -permalink: / ---- - -Hello from index. diff --git a/src/content/pages/pages.json b/src/content/pages/pages.json deleted file mode 100644 index 3d02c7f..0000000 --- a/src/content/pages/pages.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "layout": "layouts/base" -} diff --git a/src/css/blocks/archive.css b/src/css/blocks/archive.css index 4df7d98..0c29d89 100644 --- a/src/css/blocks/archive.css +++ b/src/css/blocks/archive.css @@ -9,3 +9,19 @@ color: var(--color-fadeText); letter-spacing: 0.05em; } + +.archive-item { + display: flex; + flex-wrap: wrap; + gap: var(--s1); +} + +.archive-item > * { + flex-grow: 1; + flex-basis: calc((30rem - 100%) * 999); +} + +.archive-item > :nth-last-child(n + 4), +.archive-item > :nth-last-child(n + 4) ~ * { + flex-basis: 100%; +} diff --git a/src/index.html b/src/index.html new file mode 100644 index 0000000..912eaf1 --- /dev/null +++ b/src/index.html @@ -0,0 +1,27 @@ +--- +layout: "layouts/base" +permalink: / +--- + +

Ahoj!

+

Hello! My name is Devin.

+

I'm a creative developer who specializes in web and mobile development.

+

+ Welcome to my little slice of the internet. I like to write and catalogue things. There's a lot to explore, and I hope you have fun! +

+

+ If you're interested, I have an about page all about me! +

+

Favourite posts

+

Recent posts

+ diff --git a/src/content/pages/links.md b/src/links.md similarity index 96% rename from src/content/pages/links.md rename to src/links.md index 9390e16..395240a 100644 --- a/src/content/pages/links.md +++ b/src/links.md @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /links/index.html title: Links --- diff --git a/src/content/pages/now.html b/src/now.html similarity index 73% rename from src/content/pages/now.html rename to src/now.html index 29a96d6..4715f59 100644 --- a/src/content/pages/now.html +++ b/src/now.html @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /now/index.html title: /now --- diff --git a/src/content/pages/posts.html b/src/posts.html similarity index 91% rename from src/content/pages/posts.html rename to src/posts.html index c1a4701..3d75d41 100644 --- a/src/content/pages/posts.html +++ b/src/posts.html @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /posts/index.html title: Posts --- diff --git a/src/content/posts/2020-in-review-01-2021.md b/src/posts/2020-in-review-01-2021.md similarity index 100% rename from src/content/posts/2020-in-review-01-2021.md rename to src/posts/2020-in-review-01-2021.md diff --git a/src/content/posts/2021-ranked-games-01-2022.md b/src/posts/2021-ranked-games-01-2022.md similarity index 100% rename from src/content/posts/2021-ranked-games-01-2022.md rename to src/posts/2021-ranked-games-01-2022.md diff --git a/src/content/posts/a-primer-on-canadian-government-01-2021.md b/src/posts/a-primer-on-canadian-government-01-2021.md similarity index 100% rename from src/content/posts/a-primer-on-canadian-government-01-2021.md rename to src/posts/a-primer-on-canadian-government-01-2021.md diff --git a/src/content/posts/apple-watch-thoughts-2019.md b/src/posts/apple-watch-thoughts-2019.md similarity index 100% rename from src/content/posts/apple-watch-thoughts-2019.md rename to src/posts/apple-watch-thoughts-2019.md diff --git a/src/content/posts/checking-in-11-2021.md b/src/posts/checking-in-11-2021.md similarity index 100% rename from src/content/posts/checking-in-11-2021.md rename to src/posts/checking-in-11-2021.md diff --git a/src/content/posts/coming-back-to-vinyl.md b/src/posts/coming-back-to-vinyl.md similarity index 100% rename from src/content/posts/coming-back-to-vinyl.md rename to src/posts/coming-back-to-vinyl.md diff --git a/src/content/posts/give-in-to-feel-good.md b/src/posts/give-in-to-feel-good.md similarity index 100% rename from src/content/posts/give-in-to-feel-good.md rename to src/posts/give-in-to-feel-good.md diff --git a/src/content/posts/gmtk-post-mortem-2021.md b/src/posts/gmtk-post-mortem-2021.md similarity index 100% rename from src/content/posts/gmtk-post-mortem-2021.md rename to src/posts/gmtk-post-mortem-2021.md diff --git a/src/content/posts/how-this-blog-works.md b/src/posts/how-this-blog-works.md similarity index 100% rename from src/content/posts/how-this-blog-works.md rename to src/posts/how-this-blog-works.md diff --git a/src/content/posts/its-been-a-while-10-2022.md b/src/posts/its-been-a-while-10-2022.md similarity index 100% rename from src/content/posts/its-been-a-while-10-2022.md rename to src/posts/its-been-a-while-10-2022.md diff --git a/src/content/posts/lately-01-2024.md b/src/posts/lately-01-2024.md similarity index 100% rename from src/content/posts/lately-01-2024.md rename to src/posts/lately-01-2024.md diff --git a/src/content/posts/my-vim-setup-04-2021.md b/src/posts/my-vim-setup-04-2021.md similarity index 100% rename from src/content/posts/my-vim-setup-04-2021.md rename to src/posts/my-vim-setup-04-2021.md diff --git a/src/content/posts/my-vinyl-journey.md b/src/posts/my-vinyl-journey.md similarity index 100% rename from src/content/posts/my-vinyl-journey.md rename to src/posts/my-vinyl-journey.md diff --git a/src/content/posts/posts.json b/src/posts/posts.json similarity index 100% rename from src/content/posts/posts.json rename to src/posts/posts.json diff --git a/src/content/posts/professional-development-in-2018.md b/src/posts/professional-development-in-2018.md similarity index 100% rename from src/content/posts/professional-development-in-2018.md rename to src/posts/professional-development-in-2018.md diff --git a/src/content/posts/professional-development-in-2019.md b/src/posts/professional-development-in-2019.md similarity index 100% rename from src/content/posts/professional-development-in-2019.md rename to src/posts/professional-development-in-2019.md diff --git a/src/content/posts/recently-01-2021.md b/src/posts/recently-01-2021.md similarity index 100% rename from src/content/posts/recently-01-2021.md rename to src/posts/recently-01-2021.md diff --git a/src/content/posts/recently-02-2022.md b/src/posts/recently-02-2022.md similarity index 100% rename from src/content/posts/recently-02-2022.md rename to src/posts/recently-02-2022.md diff --git a/src/content/posts/recently-03-2021.md b/src/posts/recently-03-2021.md similarity index 100% rename from src/content/posts/recently-03-2021.md rename to src/posts/recently-03-2021.md diff --git a/src/content/posts/recently-04-2021.md b/src/posts/recently-04-2021.md similarity index 100% rename from src/content/posts/recently-04-2021.md rename to src/posts/recently-04-2021.md diff --git a/src/content/posts/recently-05-2020.md b/src/posts/recently-05-2020.md similarity index 100% rename from src/content/posts/recently-05-2020.md rename to src/posts/recently-05-2020.md diff --git a/src/content/posts/recently-05-2021.md b/src/posts/recently-05-2021.md similarity index 100% rename from src/content/posts/recently-05-2021.md rename to src/posts/recently-05-2021.md diff --git a/src/content/posts/recently-06-2020.md b/src/posts/recently-06-2020.md similarity index 100% rename from src/content/posts/recently-06-2020.md rename to src/posts/recently-06-2020.md diff --git a/src/content/posts/recently-06-2021.md b/src/posts/recently-06-2021.md similarity index 100% rename from src/content/posts/recently-06-2021.md rename to src/posts/recently-06-2021.md diff --git a/src/content/posts/recently-07-2020.md b/src/posts/recently-07-2020.md similarity index 100% rename from src/content/posts/recently-07-2020.md rename to src/posts/recently-07-2020.md diff --git a/src/content/posts/recently-07-2021.md b/src/posts/recently-07-2021.md similarity index 100% rename from src/content/posts/recently-07-2021.md rename to src/posts/recently-07-2021.md diff --git a/src/content/posts/recently-08-2020.md b/src/posts/recently-08-2020.md similarity index 100% rename from src/content/posts/recently-08-2020.md rename to src/posts/recently-08-2020.md diff --git a/src/content/posts/recently-09-2020.md b/src/posts/recently-09-2020.md similarity index 100% rename from src/content/posts/recently-09-2020.md rename to src/posts/recently-09-2020.md diff --git a/src/content/posts/recently-10-2020.md b/src/posts/recently-10-2020.md similarity index 100% rename from src/content/posts/recently-10-2020.md rename to src/posts/recently-10-2020.md diff --git a/src/content/posts/recently-11-2020.md b/src/posts/recently-11-2020.md similarity index 100% rename from src/content/posts/recently-11-2020.md rename to src/posts/recently-11-2020.md diff --git a/src/content/posts/recently-12-2020.md b/src/posts/recently-12-2020.md similarity index 100% rename from src/content/posts/recently-12-2020.md rename to src/posts/recently-12-2020.md diff --git a/src/content/posts/remember-to-be-nice-01-2021.md b/src/posts/remember-to-be-nice-01-2021.md similarity index 100% rename from src/content/posts/remember-to-be-nice-01-2021.md rename to src/posts/remember-to-be-nice-01-2021.md diff --git a/src/content/posts/stray-thoughts-1-09-2021.md b/src/posts/stray-thoughts-1-09-2021.md similarity index 100% rename from src/content/posts/stray-thoughts-1-09-2021.md rename to src/posts/stray-thoughts-1-09-2021.md diff --git a/src/content/posts/stray-thoughts-2-10-2021.md b/src/posts/stray-thoughts-2-10-2021.md similarity index 100% rename from src/content/posts/stray-thoughts-2-10-2021.md rename to src/posts/stray-thoughts-2-10-2021.md diff --git a/src/content/posts/stray-thoughts-3-10-2021.md b/src/posts/stray-thoughts-3-10-2021.md similarity index 100% rename from src/content/posts/stray-thoughts-3-10-2021.md rename to src/posts/stray-thoughts-3-10-2021.md diff --git a/src/content/posts/switching-to-protonmail.md b/src/posts/switching-to-protonmail.md similarity index 100% rename from src/content/posts/switching-to-protonmail.md rename to src/posts/switching-to-protonmail.md diff --git a/src/content/posts/tadpoles-the-big-little-migration-01-2021.md b/src/posts/tadpoles-the-big-little-migration-01-2021.md similarity index 100% rename from src/content/posts/tadpoles-the-big-little-migration-01-2021.md rename to src/posts/tadpoles-the-big-little-migration-01-2021.md diff --git a/src/content/posts/take-the-power-back-music.md b/src/posts/take-the-power-back-music.md similarity index 100% rename from src/content/posts/take-the-power-back-music.md rename to src/posts/take-the-power-back-music.md diff --git a/src/content/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md b/src/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md similarity index 100% rename from src/content/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md rename to src/posts/the-fellow-stagg-a-review-of-the-details-01-2022.md diff --git a/src/content/posts/the-suspense-is-killing-me.md b/src/posts/the-suspense-is-killing-me.md similarity index 100% rename from src/content/posts/the-suspense-is-killing-me.md rename to src/posts/the-suspense-is-killing-me.md diff --git a/src/content/posts/version-2-09-2021.md b/src/posts/version-2-09-2021.md similarity index 100% rename from src/content/posts/version-2-09-2021.md rename to src/posts/version-2-09-2021.md diff --git a/src/content/posts/weaknotes-1.md b/src/posts/weaknotes-1.md similarity index 100% rename from src/content/posts/weaknotes-1.md rename to src/posts/weaknotes-1.md diff --git a/src/content/posts/weaknotes-2.md b/src/posts/weaknotes-2.md similarity index 100% rename from src/content/posts/weaknotes-2.md rename to src/posts/weaknotes-2.md diff --git a/src/content/posts/weaknotes-3.md b/src/posts/weaknotes-3.md similarity index 100% rename from src/content/posts/weaknotes-3.md rename to src/posts/weaknotes-3.md diff --git a/src/content/posts/weaknotes-4.md b/src/posts/weaknotes-4.md similarity index 100% rename from src/content/posts/weaknotes-4.md rename to src/posts/weaknotes-4.md diff --git a/src/content/posts/whats-next-09-2020.md b/src/posts/whats-next-09-2020.md similarity index 100% rename from src/content/posts/whats-next-09-2020.md rename to src/posts/whats-next-09-2020.md diff --git a/src/content/pages/styleguide.html b/src/styleguide.html similarity index 98% rename from src/content/pages/styleguide.html rename to src/styleguide.html index 826d437..a161dd5 100644 --- a/src/content/pages/styleguide.html +++ b/src/styleguide.html @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /styleguide/index.html title: Styleguide --- diff --git a/src/content/pages/uses.md b/src/uses.md similarity index 99% rename from src/content/pages/uses.md rename to src/uses.md index ad889d2..ea0bc4d 100644 --- a/src/content/pages/uses.md +++ b/src/uses.md @@ -1,4 +1,5 @@ --- +layout: "layouts/base" permalink: /uses/index.html title: /uses ---