From 6d3196407411455f0270b608003f875ac5021c02 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 6 Apr 2026 17:56:14 +0000 Subject: [PATCH] Fix footer copyright HTML rendering in all layouts The columns, minimal, and stacked footer layouts were rendering the copyright string as raw text instead of HTML, causing the 'Designed by Hans Martens' link to appear as code on the page. Changed all three layouts to use set:html consistent with the simple layout which was already rendering correctly. https://claude.ai/code/session_019mp7rTrQPx9yxp17hgjsYb --- src/components/layout/Footer.astro | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/src/components/layout/Footer.astro b/src/components/layout/Footer.astro index 8c56301..88f3c8f 100644 --- a/src/components/layout/Footer.astro +++ b/src/components/layout/Footer.astro @@ -274,9 +274,7 @@ function getSocialIcon(platform: string): string { ) : ( <> {showCopyright && ( -

- {processedCopyright} -

+

)} {legalLinks.length > 0 && (

@@ -300,9 +298,7 @@ function getSocialIcon(platform: string): string { {layout === 'minimal' && (
{showCopyright && ( -

- {processedCopyright} -

+

)}

)} @@ -365,9 +361,7 @@ function getSocialIcon(platform: string): string { {(showCopyright || legalLinks.length > 0) && (
{showCopyright && ( -

- {processedCopyright} -

+

)} {legalLinks.length > 0 && (