refactor: changed blog cover reference name

This commit is contained in:
2025-10-26 11:43:11 +01:00
parent d06cb8345e
commit 1a6f9b2582
5 changed files with 5 additions and 4 deletions

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,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.png
--- ---

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: "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: "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."
date: 2025-09-17 date: 2025-09-17
img: gitea-logo.png|0.8 img_cov: gitea-logo.png|0.8
listed: true listed: true
--- ---

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