refactor: Update asset paths in header and footer for consistency and improved resource loading

This commit is contained in:
𝓜𝓪𝓬𝓮™
2026-04-02 13:34:36 +02:00
parent 0b4f57ed02
commit a7647f3c9b
3 changed files with 8 additions and 8 deletions

View File

@@ -52,14 +52,14 @@ function includeHeader($title = '', $description = '', $page = '', $scripts = []
$current_page = $page;
$additional_scripts = $scripts;
include 'includes/header.php';
include __DIR__ . '/header.php';
}
/**
* Include footer
*/
function includeFooter() {
include 'includes/footer.php';
include __DIR__ . '/footer.php';
}
/**