Moved PHP includes inside the `<head>` tag in `header.php` for proper structure and readability. Fixed a typo in variable name `$URLsorrection` in `index.php` to ensure correct script inclusion.
19 lines
726 B
PHP
19 lines
726 B
PHP
<?php
|
|
|
|
$URLcorrection = "";
|
|
$PageTitle = "Home";
|
|
$PageDescription = "Trusted roofing specialists in the UK, Warmseal Roofing offers expert roof repairs, installations, and maintenance with quality workmanship and guaranteed results.";
|
|
|
|
|
|
include_once $URLcorrection . "includes/header.php";
|
|
include_once $URLcorrection . "includes/nav.php";
|
|
include_once $URLcorrection . "includes/index-hero.php";
|
|
include_once $URLcorrection . "sections/about-us.php";
|
|
include_once $URLcorrection . "sections/counter.php";
|
|
include_once $URLcorrection . "sections/services.php";
|
|
include_once $URLcorrection . "sections/projectsphp";
|
|
include_once $URLcorrection . "sections/reviews.php";
|
|
include_once $URLcorrection . "includes/footer.php";
|
|
|
|
|
|
?>
|