Refactor: Update index.php and about.php to use unified header template

- index.php: Changed from header01.php to new unified header.php with dark style
- about.php: Changed from header02.php to new unified header.php with light style
- Both pages now use single configurable header template
- Eliminates dependency on separate header files

Test these pages in browser to verify header renders correctly before updating remaining pages
This commit is contained in:
twotalesanimation
2025-12-03 16:48:09 +02:00
parent 938ce4e15e
commit 0d01c7da90
2 changed files with 6 additions and 2 deletions

View File

@@ -1,4 +1,6 @@
<?php include_once('header02.php'); <?php
$headerStyle = 'light';
include_once('header.php');
?> ?>
<style> <style>

View File

@@ -1,4 +1,6 @@
<?php include_once('header01.php'); <?php
$headerStyle = 'dark';
include_once('header.php');
$indemnityPending = false; $indemnityPending = false;
if (isset($_SESSION['user_id'])) { if (isset($_SESSION['user_id'])) {