warmseal-roofing/index.php
Mark 5be4001ee2 Refactor header PHP inclusion and fix typo in index.php
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.
2025-05-09 10:26:26 +01:00

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";
?>