From ba79a67944a2f53fc679be49ecf87e7c26c05366 Mon Sep 17 00:00:00 2001 From: Martin_MMC Date: Sun, 2 Aug 2026 19:56:32 -0700 Subject: [PATCH] Refactor index.html to load content dynamically Removed head section and replaced with dynamic loading of HTML content. --- index.html | 92 ++++++++++++++++++------------------------------------ 1 file changed, 30 insertions(+), 62 deletions(-) diff --git a/index.html b/index.html index b099db67..dae79ac0 100644 --- a/index.html +++ b/index.html @@ -1,64 +1,32 @@ - - + + - - - - - - - - - - - - - - - - - - - - - - - - - + // replace document + document.open(); + document.write(html); + document.close(); + }); + } catch (error) { + console.error("error:", error); + } + } +