Compare commits

...

5 Commits

Author SHA1 Message Date
efcceaade1 fix: fixed styling bug (prettier problem)
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m17s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 13:37:02 +01:00
32db6a4cf4 feat: updated ressources
Some checks failed
Gitea Actions Demo / Upload (push) Has been cancelled
Gitea Actions Demo / Build (push) Has been cancelled
2025-10-26 13:35:45 +01:00
8004e2a8ef feat: added og to start page 2025-10-26 13:35:28 +01:00
f00add4960 feat: added og type
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m13s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 13:30:01 +01:00
767f2593de fix: changed logos to jpgs for OG 2025-10-26 13:29:45 +01:00
10 changed files with 9 additions and 7 deletions

Binary file not shown.

View File

@@ -12,6 +12,7 @@
<svelte:head> <svelte:head>
<link rel="icon" href={favicon} /> <link rel="icon" href={favicon} />
<meta property="og:type" content="website" />
</svelte:head> </svelte:head>
<nav class="media-margin"> <nav class="media-margin">

View File

@@ -4,19 +4,21 @@
let { data } = $props(); let { data } = $props();
let blogs = data.blogs as BlogEntry[]; let blogs = data.blogs as BlogEntry[];
let desc =
"This is a collection of things I've set up and created that I think might interest others.";
</script> </script>
<svelte:head> <svelte:head>
<title>Home - Amys Blog</title> <title>Home - Amys Blog</title>
<meta property="og:title" content="Home - Amys Blog" /> <meta property="og:title" content="Home - Amys Blog" />
<meta property="og:description" content={desc} />
<meta property="og:image" content="https://madeio.net/blog-covers/flame.jpg" />
</svelte:head> </svelte:head>
<main> <main>
<div class="media-margin"> <div class="media-margin">
<h1>Hi, I'm Amy</h1> <h1>Hi, I'm Amy</h1>
<p> <p>{desc}</p>
This is a collection of things I've set up and created that I think might interest others.
</p>
</div> </div>
{#each blogs as blog (blog.src)} {#each blogs as blog (blog.src)}
<a href={blog.src} target={blog.src_target} class="blog-entry"> <a href={blog.src} target={blog.src_target} class="blog-entry">

View File

@@ -2,7 +2,7 @@
title: Setup up Gitea Runner with Podman in LXC title: Setup up Gitea Runner with Podman in LXC
desc: "Using CLIs is very helpful, but setting up gitea actions in an LXC and using rootless Podman is not as straight forward as expected." desc: "Using CLIs is very helpful, but setting up gitea actions in an LXC and using rootless Podman is not as straight forward as expected."
date: 2025-09-17 date: 2025-09-17
img_cov: gitea-logo.png|0.8 img_cov: gitea-logo.jpg
listed: true listed: true
--- ---

View File

@@ -27,8 +27,7 @@
<main> <main>
<div class="title media-margin"> <div class="title media-margin">
<!-- prettier-ignore --> <!-- prettier-ignore -->
<h1>{title}</h1> <h1>{title}</h1><p class="date">Last updated {ddate}</p>
<p class="date">Last updated {ddate}</p>
</div> </div>
<div class="blog-text media-margin"> <div class="blog-text media-margin">
<p>{desc}</p> <p>{desc}</p>

View File

@@ -4,6 +4,6 @@ date: 2024-11-26
src: "https://madeio.net/fox" src: "https://madeio.net/fox"
desc: "A WebGL Project wich shows that deffered rendering and volumetric fog is very possible in Three.js" desc: "A WebGL Project wich shows that deffered rendering and volumetric fog is very possible in Three.js"
listed: true listed: true
img_cov: flame.png img_cov: flame.jpg
img_bg: dark img_bg: dark
--- ---

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

After

Width:  |  Height:  |  Size: 9.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 16 KiB

After

Width:  |  Height:  |  Size: 68 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB