From 2970e3043c265def202f4d6215e8a30b69027914 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Thu, 19 Jun 2025 20:33:00 +0200 Subject: [PATCH 1/2] :bug: Fixed helmet not showing unique page-title Signed-off-by: SindreKjelsrud --- src/components/BlogContainer.astro | 8 +++++++- src/components/SectionContainer.astro | 10 ++++++++-- src/layouts/BlogPost.astro | 2 +- src/layouts/Gallery.astro | 2 +- src/layouts/Layout.astro | 2 +- src/pages/appearances.astro | 2 +- src/pages/blog/index.astro | 2 +- src/pages/cv.astro | 2 +- src/pages/guestbook.astro | 2 +- src/pages/logs/bookshelf.astro | 2 +- src/pages/logs/watchlist.astro | 2 +- src/pages/quotes.astro | 5 ++--- src/pages/todo.md | 5 ++--- src/pages/vinyl.astro | 2 +- 14 files changed, 29 insertions(+), 19 deletions(-) diff --git a/src/components/BlogContainer.astro b/src/components/BlogContainer.astro index c3c1647..451c419 100644 --- a/src/components/BlogContainer.astro +++ b/src/components/BlogContainer.astro @@ -3,12 +3,18 @@ import BaseHead from '../components/BaseHead.astro'; import BlogHeader from '../components/BlogHeader.astro'; import Footer from '../components/Footer.astro'; import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; + +interface Props { + title: string; + description: string; +} +const { title, description } = Astro.props; --- - +
diff --git a/src/components/SectionContainer.astro b/src/components/SectionContainer.astro index 003d869..680f2a0 100644 --- a/src/components/SectionContainer.astro +++ b/src/components/SectionContainer.astro @@ -3,13 +3,19 @@ import BaseHead from '../components/BaseHead.astro'; import Header from '../components/Header.astro'; import Footer from '../components/Footer.astro'; import { SITE_TITLE, SITE_DESCRIPTION } from '../consts'; + +interface Props { + title: string; + description: string; +} +const { title, description } = Astro.props; --- - - + +
diff --git a/src/layouts/BlogPost.astro b/src/layouts/BlogPost.astro index 8d56a35..000ec1f 100644 --- a/src/layouts/BlogPost.astro +++ b/src/layouts/BlogPost.astro @@ -7,7 +7,7 @@ type Props = CollectionEntry<'blog'>['data']; const { title, description, pubDate } = Astro.props; --- - +

{title}

diff --git a/src/layouts/Gallery.astro b/src/layouts/Gallery.astro index d7a7d8b..b1ef1ff 100644 --- a/src/layouts/Gallery.astro +++ b/src/layouts/Gallery.astro @@ -3,7 +3,7 @@ import SectionContainer from '../components/SectionContainer.astro'; const {frontmatter} = Astro.props; --- - +

[ gallery: {frontmatter.title} ]

diff --git a/src/layouts/Layout.astro b/src/layouts/Layout.astro index eeeb6a4..447a8af 100644 --- a/src/layouts/Layout.astro +++ b/src/layouts/Layout.astro @@ -3,7 +3,7 @@ import SectionContainer from '../components/SectionContainer.astro'; const {frontmatter} = Astro.props; --- - +

[ {frontmatter.title} ]

diff --git a/src/pages/appearances.astro b/src/pages/appearances.astro index 6a82b24..508077c 100644 --- a/src/pages/appearances.astro +++ b/src/pages/appearances.astro @@ -3,7 +3,7 @@ import SectionContainer from "../components/SectionContainer.astro"; import appearances from "../data/appearances.json"; --- - +

[ Appearances ]

diff --git a/src/pages/blog/index.astro b/src/pages/blog/index.astro index b12e7ca..e290a19 100644 --- a/src/pages/blog/index.astro +++ b/src/pages/blog/index.astro @@ -20,7 +20,7 @@ const postsByYear = posts.reduce((acc:any, post) => { // Sort the years const sortedYears = Object.keys(postsByYear).sort((a:any, b:any) => b - a); --- - +

[ Blog ]

💥 Subscribe via RSS diff --git a/src/pages/cv.astro b/src/pages/cv.astro index 2cd0182..affdc84 100644 --- a/src/pages/cv.astro +++ b/src/pages/cv.astro @@ -3,7 +3,7 @@ import SectionContainer from "../components/SectionContainer.astro"; import resume from "../data/resume.json"; --- - +

{resume.basics.name}

diff --git a/src/pages/guestbook.astro b/src/pages/guestbook.astro index a415114..e72d762 100644 --- a/src/pages/guestbook.astro +++ b/src/pages/guestbook.astro @@ -2,7 +2,7 @@ import SectionContainer from '../components/SectionContainer.astro'; --- - +
diff --git a/src/pages/logs/bookshelf.astro b/src/pages/logs/bookshelf.astro index efc3a3a..fd5afc6 100644 --- a/src/pages/logs/bookshelf.astro +++ b/src/pages/logs/bookshelf.astro @@ -36,7 +36,7 @@ const booksByYear = booksRead.reduce((acc, book) => { const sortedYears = Object.keys(booksByYear).sort((a: any, b: any) => b - a); --- - +

[ Bookshelf ]

on the shelf

diff --git a/src/pages/logs/watchlist.astro b/src/pages/logs/watchlist.astro index 26fe1c0..a1e8fe7 100644 --- a/src/pages/logs/watchlist.astro +++ b/src/pages/logs/watchlist.astro @@ -31,7 +31,7 @@ const tvByYear = watched.reduce((acc, tv) => { const sortedYears = Object.keys(tvByYear).sort((a: any, b: any) => b - a); --- - +

[ Watchlist ]

diff --git a/src/pages/quotes.astro b/src/pages/quotes.astro index 186b7d6..bda053c 100644 --- a/src/pages/quotes.astro +++ b/src/pages/quotes.astro @@ -1,10 +1,9 @@ --- import SectionContainer from '../components/SectionContainer.astro'; import quotes from '../data/quotes.json' -const today = new Date(); --- - -
+ +

[ Quotes ]

    diff --git a/src/pages/todo.md b/src/pages/todo.md index 2ca9d8e..f6cd5ae 100644 --- a/src/pages/todo.md +++ b/src/pages/todo.md @@ -1,16 +1,15 @@ --- -title: "TODOs" +title: "todo list" description: "" layout: "../layouts/Layout.astro" --- -> _Last update: June 02, 2025_ +> _Last update: June 19, 2025_ List of changes and new features I plan for this website. - Add log-page for wine/gin I like and have tried - Add page dedicated to work I'm proud of -- Fix helmet to show individual site-titles instead of the same one - Add `/concerts`-page (like [Kyrre](https://kyrremann.no/concert-vitae/) & [Wand3r](https://wand3r.net/concerts/)) - Add changelog to website using `git cliff -o CHANGELOG.md` - Redo [/gallery](/gallery) (CLS error - concrete height for images, compressed thumbnails instead of real one, hover start preload + zoom a bit out, spinner for loading?) or rewrite it to something like [rizaldys ig clone](https://ig.rizaldy.club/) \ No newline at end of file diff --git a/src/pages/vinyl.astro b/src/pages/vinyl.astro index 1ee6594..e63a50c 100644 --- a/src/pages/vinyl.astro +++ b/src/pages/vinyl.astro @@ -26,7 +26,7 @@ const vinylData = Object.keys(vinylByAlbumTitle).map(albumTitle => { }); --- - +

    [ Vinyl collection ]

    From 28dbcd6b07a7e8210afaba0f235f1f02de754fb7 Mon Sep 17 00:00:00 2001 From: SindreKjelsrud Date: Thu, 19 Jun 2025 20:39:35 +0200 Subject: [PATCH 2/2] :speech_balloon: Lowercase all titles for consistency Signed-off-by: SindreKjelsrud --- src/pages/bookmarks.md | 2 +- src/pages/contact.md | 2 +- src/pages/feedroll.md | 2 +- src/pages/garden/index.md | 2 +- src/pages/garden/instructions/gpg.md | 2 +- src/pages/garden/instructions/index.md | 2 +- src/pages/garden/instructions/linux.md | 2 +- src/pages/garden/instructions/windows.md | 2 +- src/pages/garden/instructions/wireguard.md | 2 +- src/pages/garden/lifehacks/cleaning.md | 2 +- src/pages/garden/lifehacks/clothing.md | 2 +- src/pages/garden/lifehacks/index.md | 2 +- src/pages/garden/machines/eastblue.md | 2 +- src/pages/garden/machines/index.md | 2 +- src/pages/garden/machines/kanto.md | 2 +- src/pages/garden/machines/wii.md | 2 +- src/pages/garden/notes/digitalsecurity.md | 2 +- src/pages/garden/notes/index.md | 2 +- src/pages/garden/services/index.md | 2 +- src/pages/garden/services/mc_server.md | 2 +- src/pages/logs/climbboard.md | 2 +- src/pages/logs/index.md | 2 +- src/pages/now.md | 2 +- src/pages/recipes/berry-compote.md | 2 +- src/pages/recipes/celinas-stuffed-mushrooms.md | 2 +- src/pages/recipes/chicken-teriyaki.md | 2 +- src/pages/recipes/dynamite-harrys-tomato-soup.md | 2 +- src/pages/recipes/homemade-salsa.md | 2 +- src/pages/recipes/hot-chicken-soup-with-apple-and-carrot.md | 2 +- src/pages/recipes/index.md | 2 +- src/pages/recipes/indonesisk.md | 2 +- src/pages/recipes/mongolian-beef.md | 2 +- .../recipes/noodle-salad-with-beef-and-spicy-chili-sauce.md | 2 +- src/pages/recipes/sids-wok.md | 2 +- src/pages/recipes/sweet-chicken.md | 2 +- src/pages/recipes/vegan-chili.md | 2 +- .../vegan-shawarma-with-roasted-cauliflower-and-chickpeas.md | 2 +- src/pages/recipes/waffles-from-trines-matblogg.md | 2 +- src/pages/slashes.md | 2 +- src/pages/uses.md | 2 +- src/pages/wish.md | 2 +- src/pages/worldmap.md | 2 +- 42 files changed, 42 insertions(+), 42 deletions(-) diff --git a/src/pages/bookmarks.md b/src/pages/bookmarks.md index 6fe6e83..f56bbcf 100644 --- a/src/pages/bookmarks.md +++ b/src/pages/bookmarks.md @@ -1,5 +1,5 @@ --- -title: "Bookmarks" +title: "bookmarks" description: "A collection of my favorite links to content around the web (blogs, podcasts, etc.)." layout: "../layouts/Layout.astro" --- diff --git a/src/pages/contact.md b/src/pages/contact.md index 8d2066d..65034aa 100644 --- a/src/pages/contact.md +++ b/src/pages/contact.md @@ -1,5 +1,5 @@ --- -title: "Contact" +title: "contact" description: "" layout: "../layouts/Layout.astro" --- diff --git a/src/pages/feedroll.md b/src/pages/feedroll.md index b233567..5bee1a9 100644 --- a/src/pages/feedroll.md +++ b/src/pages/feedroll.md @@ -1,5 +1,5 @@ --- -title: "Feedroll" +title: "feedroll" description: "A list of other sites that I read/watch, are a follower of, or recommend." layout: "../layouts/Layout.astro" --- diff --git a/src/pages/garden/index.md b/src/pages/garden/index.md index c67ca5b..3a2d5ea 100644 --- a/src/pages/garden/index.md +++ b/src/pages/garden/index.md @@ -1,5 +1,5 @@ --- -title: "Garden" +title: "garden" description: "🪴 My personal digital garden. A wild garden, filled with drafts, ideas and more." layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/garden/instructions/gpg.md b/src/pages/garden/instructions/gpg.md index 5d8db3f..5bb4ffb 100644 --- a/src/pages/garden/instructions/gpg.md +++ b/src/pages/garden/instructions/gpg.md @@ -1,5 +1,5 @@ --- -title: 'GPG' +title: 'gpg' description: '🌱 ~ Info around GPG' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/instructions/index.md b/src/pages/garden/instructions/index.md index 1f9f99b..a3dcebd 100644 --- a/src/pages/garden/instructions/index.md +++ b/src/pages/garden/instructions/index.md @@ -1,5 +1,5 @@ --- -title: 'Instructions' +title: 'instructions' description: '' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/instructions/linux.md b/src/pages/garden/instructions/linux.md index e60d316..ffca3b9 100644 --- a/src/pages/garden/instructions/linux.md +++ b/src/pages/garden/instructions/linux.md @@ -1,5 +1,5 @@ --- -title: 'Linux' +title: 'linux' description: '🌱 ~ Some info I keep forgetting on Linux lol' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/instructions/windows.md b/src/pages/garden/instructions/windows.md index 5cf0b62..a8ef1c9 100644 --- a/src/pages/garden/instructions/windows.md +++ b/src/pages/garden/instructions/windows.md @@ -1,5 +1,5 @@ --- -title: 'Windows' +title: 'windows' description: '🌱 ~ Some info I keep forgetting on Windows lol' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/instructions/wireguard.md b/src/pages/garden/instructions/wireguard.md index a25e099..464a51f 100644 --- a/src/pages/garden/instructions/wireguard.md +++ b/src/pages/garden/instructions/wireguard.md @@ -1,5 +1,5 @@ --- -title: 'Wireguard' +title: 'wireguard' description: '🌿 ~ Some info I keep forgetting lol' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/lifehacks/cleaning.md b/src/pages/garden/lifehacks/cleaning.md index 634a7a3..ae62096 100644 --- a/src/pages/garden/lifehacks/cleaning.md +++ b/src/pages/garden/lifehacks/cleaning.md @@ -1,5 +1,5 @@ --- -title: 'Cleaning' +title: 'cleaning' description: '🌱 ~ Very rough notes about cleaning-related stuff' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/lifehacks/clothing.md b/src/pages/garden/lifehacks/clothing.md index 6bb19bd..4d047f0 100644 --- a/src/pages/garden/lifehacks/clothing.md +++ b/src/pages/garden/lifehacks/clothing.md @@ -1,5 +1,5 @@ --- -title: 'Clothing' +title: 'clothing' description: '🌱 ~ Very rough notes about clothing-related stuff' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/lifehacks/index.md b/src/pages/garden/lifehacks/index.md index 5430c23..2d1901b 100644 --- a/src/pages/garden/lifehacks/index.md +++ b/src/pages/garden/lifehacks/index.md @@ -1,5 +1,5 @@ --- -title: 'Lifehacks' +title: 'lifehacks' description: '' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/machines/eastblue.md b/src/pages/garden/machines/eastblue.md index 696d00c..f414978 100644 --- a/src/pages/garden/machines/eastblue.md +++ b/src/pages/garden/machines/eastblue.md @@ -1,5 +1,5 @@ --- -title: 'East Blue' +title: 'eastblue' description: '🌿 ~ Some notes about my server' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/machines/index.md b/src/pages/garden/machines/index.md index ca66dfa..fb65e2d 100644 --- a/src/pages/garden/machines/index.md +++ b/src/pages/garden/machines/index.md @@ -1,5 +1,5 @@ --- -title: 'Machines' +title: 'machines' description: '' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/machines/kanto.md b/src/pages/garden/machines/kanto.md index eeb42ef..5861f42 100644 --- a/src/pages/garden/machines/kanto.md +++ b/src/pages/garden/machines/kanto.md @@ -1,5 +1,5 @@ --- -title: 'Kanto' +title: 'kanto' description: '🌳 ~ My first "server" <3 (Out of prod ⚰️)' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/machines/wii.md b/src/pages/garden/machines/wii.md index 4479739..60d0995 100644 --- a/src/pages/garden/machines/wii.md +++ b/src/pages/garden/machines/wii.md @@ -1,5 +1,5 @@ --- -title: 'Help for Nintendo Wii' +title: 'nintendo wii' description: '🌱 ~ Notes to remember for my modded Wii' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/notes/digitalsecurity.md b/src/pages/garden/notes/digitalsecurity.md index 5b424c4..b7a9545 100644 --- a/src/pages/garden/notes/digitalsecurity.md +++ b/src/pages/garden/notes/digitalsecurity.md @@ -1,5 +1,5 @@ --- -title: "Digital Security" +title: "digital security" description: "🌱 ~ Very rough notes I've found on digital security" layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/notes/index.md b/src/pages/garden/notes/index.md index 8ec9a1a..33a14a9 100644 --- a/src/pages/garden/notes/index.md +++ b/src/pages/garden/notes/index.md @@ -1,5 +1,5 @@ --- -title: "Random Web-notes" +title: "random web-notes" description: "" layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/services/index.md b/src/pages/garden/services/index.md index 21b8738..71cf8cd 100644 --- a/src/pages/garden/services/index.md +++ b/src/pages/garden/services/index.md @@ -1,5 +1,5 @@ --- -title: 'Services' +title: 'services' description: '' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/garden/services/mc_server.md b/src/pages/garden/services/mc_server.md index d195103..663cfc0 100644 --- a/src/pages/garden/services/mc_server.md +++ b/src/pages/garden/services/mc_server.md @@ -1,5 +1,5 @@ --- -title: 'sidsIgloo ~ A Minecraft server' +title: 'sidsIgloo ~ a minecraft server' description: '🌿 ~ Some info about the server' layout: "../../../layouts/Layout.astro" --- diff --git a/src/pages/logs/climbboard.md b/src/pages/logs/climbboard.md index fe67693..12b2b6a 100644 --- a/src/pages/logs/climbboard.md +++ b/src/pages/logs/climbboard.md @@ -1,5 +1,5 @@ --- -title: 'Climbboard' +title: 'climbboard' description: '' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/logs/index.md b/src/pages/logs/index.md index 589dc27..2b8d2e3 100644 --- a/src/pages/logs/index.md +++ b/src/pages/logs/index.md @@ -1,5 +1,5 @@ --- -title: 'Logs' +title: 'logs' description: '' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/now.md b/src/pages/now.md index 1337910..7af0d03 100644 --- a/src/pages/now.md +++ b/src/pages/now.md @@ -1,5 +1,5 @@ --- -title: "Now" +title: "now" description: "" layout: "../layouts/Layout.astro" --- diff --git a/src/pages/recipes/berry-compote.md b/src/pages/recipes/berry-compote.md index 3382e01..3bc4cbf 100644 --- a/src/pages/recipes/berry-compote.md +++ b/src/pages/recipes/berry-compote.md @@ -1,5 +1,5 @@ --- -title: 'Berry Compote' +title: 'berry compote' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/celinas-stuffed-mushrooms.md b/src/pages/recipes/celinas-stuffed-mushrooms.md index 12252e1..7174673 100644 --- a/src/pages/recipes/celinas-stuffed-mushrooms.md +++ b/src/pages/recipes/celinas-stuffed-mushrooms.md @@ -1,5 +1,5 @@ --- -title: 'Celinas Stuffed Mushrooms' +title: 'celinas stuffed mushrooms' description: '10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/chicken-teriyaki.md b/src/pages/recipes/chicken-teriyaki.md index 542e8b5..f692256 100644 --- a/src/pages/recipes/chicken-teriyaki.md +++ b/src/pages/recipes/chicken-teriyaki.md @@ -1,5 +1,5 @@ --- -title: 'Chicken Teriyaki' +title: 'chicken teriyaki' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/dynamite-harrys-tomato-soup.md b/src/pages/recipes/dynamite-harrys-tomato-soup.md index b08499b..ccd38da 100644 --- a/src/pages/recipes/dynamite-harrys-tomato-soup.md +++ b/src/pages/recipes/dynamite-harrys-tomato-soup.md @@ -1,5 +1,5 @@ --- -title: 'Dynamite Harrys Tomato Soup' +title: 'dynamite harrys tomato soup' description: ' 10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/homemade-salsa.md b/src/pages/recipes/homemade-salsa.md index df39cc3..3d6ca30 100644 --- a/src/pages/recipes/homemade-salsa.md +++ b/src/pages/recipes/homemade-salsa.md @@ -1,5 +1,5 @@ --- -title: 'Homemade Salsa' +title: 'homemade salsa' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/hot-chicken-soup-with-apple-and-carrot.md b/src/pages/recipes/hot-chicken-soup-with-apple-and-carrot.md index 07d7e16..15ef2d5 100644 --- a/src/pages/recipes/hot-chicken-soup-with-apple-and-carrot.md +++ b/src/pages/recipes/hot-chicken-soup-with-apple-and-carrot.md @@ -1,5 +1,5 @@ --- -title: 'Spicy Chicken Soup with Apple and Carrot' +title: 'spicy chicken soup with apple and carrot' description: '10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/index.md b/src/pages/recipes/index.md index 12fdfd6..e889631 100644 --- a/src/pages/recipes/index.md +++ b/src/pages/recipes/index.md @@ -1,5 +1,5 @@ --- -title: 'Recipes I like' +title: 'recipes' description: 'Recent years I have gotten more into cooking and baking, so I thought why not share my favorite recipes!' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/indonesisk.md b/src/pages/recipes/indonesisk.md index 7a49008..d419f1d 100644 --- a/src/pages/recipes/indonesisk.md +++ b/src/pages/recipes/indonesisk.md @@ -1,5 +1,5 @@ --- -title: 'Indonesisk' +title: 'indonesisk' description: '10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/mongolian-beef.md b/src/pages/recipes/mongolian-beef.md index 9baab80..dd50151 100644 --- a/src/pages/recipes/mongolian-beef.md +++ b/src/pages/recipes/mongolian-beef.md @@ -1,5 +1,5 @@ --- -title: 'Mongolian Beef' +title: 'mongolian beef' description: '13-09-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/noodle-salad-with-beef-and-spicy-chili-sauce.md b/src/pages/recipes/noodle-salad-with-beef-and-spicy-chili-sauce.md index e286124..757f8a3 100644 --- a/src/pages/recipes/noodle-salad-with-beef-and-spicy-chili-sauce.md +++ b/src/pages/recipes/noodle-salad-with-beef-and-spicy-chili-sauce.md @@ -1,5 +1,5 @@ --- -title: 'Noodle salad with Beef & Spicy chili sauce' +title: 'noodle salad with beef & spicy chili sauce' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/sids-wok.md b/src/pages/recipes/sids-wok.md index 1467607..5637b11 100644 --- a/src/pages/recipes/sids-wok.md +++ b/src/pages/recipes/sids-wok.md @@ -1,5 +1,5 @@ --- -title: 'Sids Wok' +title: 'sids wok' description: '10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/sweet-chicken.md b/src/pages/recipes/sweet-chicken.md index afd8d1a..73790eb 100644 --- a/src/pages/recipes/sweet-chicken.md +++ b/src/pages/recipes/sweet-chicken.md @@ -1,5 +1,5 @@ --- -title: 'Sweet Chicken' +title: 'sweet chicken' description: '10-07-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/vegan-chili.md b/src/pages/recipes/vegan-chili.md index 39d98e3f..f660290 100644 --- a/src/pages/recipes/vegan-chili.md +++ b/src/pages/recipes/vegan-chili.md @@ -1,5 +1,5 @@ --- -title: 'Vegan Chili' +title: 'vegan chili' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/vegan-shawarma-with-roasted-cauliflower-and-chickpeas.md b/src/pages/recipes/vegan-shawarma-with-roasted-cauliflower-and-chickpeas.md index 8146584..5d5b36e 100644 --- a/src/pages/recipes/vegan-shawarma-with-roasted-cauliflower-and-chickpeas.md +++ b/src/pages/recipes/vegan-shawarma-with-roasted-cauliflower-and-chickpeas.md @@ -1,5 +1,5 @@ --- -title: 'Vegan Shawarma with Roasted Cauliflower and Chickpeas' +title: 'vegan shawarma with roasted cauliflower and chickpeas' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/recipes/waffles-from-trines-matblogg.md b/src/pages/recipes/waffles-from-trines-matblogg.md index f7f99b6..853c674 100644 --- a/src/pages/recipes/waffles-from-trines-matblogg.md +++ b/src/pages/recipes/waffles-from-trines-matblogg.md @@ -1,5 +1,5 @@ --- -title: 'Waffles from "Trines Matblogg"' +title: 'waffles from "trines matblogg"' description: ' 07-06-2024' layout: "../../layouts/Layout.astro" --- diff --git a/src/pages/slashes.md b/src/pages/slashes.md index 3aaa1be..48822fc 100644 --- a/src/pages/slashes.md +++ b/src/pages/slashes.md @@ -1,5 +1,5 @@ --- -title: "Slashes" +title: "slashes" description: "" layout: "../layouts/Layout.astro" --- diff --git a/src/pages/uses.md b/src/pages/uses.md index f94b565..789cf78 100644 --- a/src/pages/uses.md +++ b/src/pages/uses.md @@ -1,5 +1,5 @@ --- -title: "Uses" +title: "uses" description: "" layout: "../layouts/Layout.astro" --- diff --git a/src/pages/wish.md b/src/pages/wish.md index 89056bd..cc2f2f3 100644 --- a/src/pages/wish.md +++ b/src/pages/wish.md @@ -1,5 +1,5 @@ --- -title: "Wishlist" +title: "wishlist" description: "" layout: "../layouts/Layout.astro" --- diff --git a/src/pages/worldmap.md b/src/pages/worldmap.md index fca7656..67c588f 100644 --- a/src/pages/worldmap.md +++ b/src/pages/worldmap.md @@ -1,5 +1,5 @@ --- -title: "Map of places I've been" +title: "map of places i've been" description: "" layout: "../layouts/Layout.astro" ---