Compare commits

..

14 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
1a9c4b7ff6 feat: improved podman desc
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m16s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 12:59:13 +01:00
2c7ceb53f6 fix: changed to jpg for og
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m24s
Gitea Actions Demo / Upload (push) Successful in 9s
2025-10-26 12:36:35 +01:00
921e11264f refactor: removed unused files 2025-10-26 12:36:17 +01:00
76d7457cc7 fix: added domain to img in opengraph
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m19s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 12:04:45 +01:00
01662d2bc3 fix: added protocoll to img in opengraph
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m26s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 11:56:05 +01:00
4dea4d62d7 fix: added fallback for img in openGraph
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m21s
Gitea Actions Demo / Upload (push) Successful in 8s
2025-10-26 11:47:41 +01:00
fdb9a62855 feat: implemented open graph
Some checks failed
Gitea Actions Demo / Build (push) Failing after 1m10s
Gitea Actions Demo / Upload (push) Has been skipped
2025-10-26 11:43:20 +01:00
1a6f9b2582 refactor: changed blog cover reference name 2025-10-26 11:43:11 +01:00
d06cb8345e fix: changed link for moved file
All checks were successful
Gitea Actions Demo / Build (push) Successful in 1m18s
Gitea Actions Demo / Upload (push) Successful in 10s
2025-10-26 11:25:33 +01:00
14 changed files with 17 additions and 9 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

@@ -28,7 +28,7 @@ export function load() {
entry.desc = entry.metadata.desc as string ?? "Needs Description!!"; entry.desc = entry.metadata.desc as string ?? "Needs Description!!";
entry.date = Date.parse(entry.metadata.date as string ?? ""); entry.date = Date.parse(entry.metadata.date as string ?? "");
entry.src_target = (entry.src.includes('https://') || entry.src.includes('http://')) ? '_blank' : ''; entry.src_target = (entry.src.includes('https://') || entry.src.includes('http://')) ? '_blank' : '';
[entry.img, entry.scale = ""] = (entry.metadata?.img as string ?? "blog-1.png").split('|'); [entry.img, entry.scale = ""] = (entry.metadata?.img_cov as string ?? "blog-1.png").split('|');
entry.img_bg = entry.metadata.img_bg == "dark" ? "var(--rp-moon-base" : "var(--rp-moon-text)"; entry.img_bg = entry.metadata.img_bg == "dark" ? "var(--rp-moon-base" : "var(--rp-moon-text)";
entry.scale = (entry.scale == "") ? "" : "transform: scale(" + entry.scale + "); height:auto;border-radius:0;"; entry.scale = (entry.scale == "") ? "" : "transform: scale(" + entry.scale + "); height:auto;border-radius:0;";

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

@@ -4,6 +4,7 @@ date: 2025-09-12
desc: "The goal was to create an easy to maintain blog with while the main focus relays on keeping the effort desc: "The goal was to create an easy to maintain blog with while the main focus relays on keeping the effort
to write new posts minimal. This is more a ressource summery with tips, than an full tutorial." to write new posts minimal. This is more a ressource summery with tips, than an full tutorial."
listed: true listed: true
img_cov: blog-1.jpg
--- ---
@@ -15,7 +16,7 @@ The stack consists of:
The core functionallity provides which allow you to combine svelte and markdown. The core functionallity provides which allow you to combine svelte and markdown.
![Tasd|20rem](/blog-1.png) ![Tasd|20rem](/blog-covers/blog-1.png)
# Image sizing # Image sizing

View File

@@ -1,8 +1,8 @@
--- ---
title: Setup up Gitea Runner with Podman in LXC title: Setup up Gitea Runner with Podman in LXC
desc: "For some time now I already host a gitea instace and now with this blog I finally have some real usage for CI, but setting up gitea actions in an LXC and using Podman instead of Docker Engine was 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: gitea-logo.png|0.8 img_cov: gitea-logo.jpg
listed: true listed: true
--- ---

View File

@@ -11,13 +11,17 @@
export let title; export let title;
export let date; export let date;
export let desc; export let desc;
export let img_cov;
let ogImgage = 'https://madeio.net/blog-covers/' + (img_cov ?? 'flame.png').split('|')[0];
let ddate = new Date(Date.parse(date)).toDateString(); let ddate = new Date(Date.parse(date)).toDateString();
</script> </script>
<svelte:head> <svelte:head>
<title>{title} - Amys Blog</title> <title>{title} - Amys Blog</title>
<meta property="og:title" content={title} /> <meta property="og:title" content={title} />
<meta property="og:description" content={desc} />
<meta property="og:image" content={ogImgage} />
</svelte:head> </svelte:head>
<main> <main>

View File

@@ -5,5 +5,5 @@ src: "https://elkortes.itch.io/catastrophe"
desc: "I took part in the amazing FemDev Game and helped to creathe this little game. desc: "I took part in the amazing FemDev Game and helped to creathe this little game.
My work are the animations, 3d Models and some texturing" My work are the animations, 3d Models and some texturing"
listed: true listed: true
img: catastrophe.png img_cov: catastrophe.png
--- ---

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: flame.png img_cov: flame.jpg
img_bg: dark img_bg: dark
--- ---

Binary file not shown.

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.

Before

Width:  |  Height:  |  Size: 240 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 34 KiB