From ed80f0e5f568d13ed034b19311fd611283e8c30e Mon Sep 17 00:00:00 2001 From: multipleof4 Date: Sun, 9 Nov 2025 18:50:11 -0800 Subject: [PATCH] Fix: Correct EJS include paths for partials --- index.html | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/index.html b/index.html index 247e51f..c16106d 100644 --- a/index.html +++ b/index.html @@ -1,18 +1,18 @@ -<%- include('./src/partials/head.html') %> +<%- include('/src/partials/head.html') %>
-<%- include('./src/partials/header.html') %> -<%- include('./src/partials/main.html') %> -<%- include('./src/partials/footer.html') %> +<%- include('/src/partials/header.html') %> +<%- include('/src/partials/main.html') %> +<%- include('/src/partials/footer.html') %>
-<%- include('./src/partials/sidebars.html') %> -<%- include('./src/partials/popovers.html') %> -<%- include('./src/partials/modals.html') %> -<%- include('./src/partials/scripts.html') %> +<%- include('/src/partials/sidebars.html') %> +<%- include('/src/partials/popovers.html') %> +<%- include('/src/partials/modals.html') %> +<%- include('/src/partials/scripts.html') %>