File: /var/www/html/WPSassoon/wp-content/themes/sassoon/header.php
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sassoon M&A | A mergers & acquisitions brokerage & advisory for the lower middle market</title>
<link rel="icon" type="image/x-icon" href="<?php echo esc_url(get_template_directory_uri()); ?>/img/Favicon_01.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.3.3/css/bootstrap.min.css"
integrity="sha512-jnSuA4Ss2PkkikSOLtYs8BlYIeeIK1h99ty4YfvRPAlzr377vr3CXDb7sb7eEEBYjDtcYj+AjBH3FLv5uSJuXg=="
crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/slick-carousel/1.9.0/slick-theme.min.css" integrity="sha512-17EgCFERpgZKcm0j0fEq1YCJuyAWdz9KUtv1EjVuaOz8pDnh/0nZxmU6BBXwaaxqoi9PQXnRWqlcDB027hgv9A==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/common.css">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/header.css">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/footer.css">
<?php if (is_page('home')) { ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/home.css">
<?php } if (is_page('founders')) { ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/founders.css">
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/faq.css">
<?php } if (is_page('contact-us')) { ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/contact-us.css">
<?php } if (is_page('about-us')) { ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/about-us.css">
<?php } if (is_page('investors')) { ?>
<link rel="stylesheet" href="<?php echo get_template_directory_uri(); ?>/css/investors.css">
<?php } ?>
<?php wp_head(); ?>
</head>
<body>
<section class="header">
<nav class="navbar navbar-expand-lg">
<div class="container custom-container">
<a class="logo" href="<?php echo esc_url(site_url()); ?>">
<img src="<?php echo get_template_directory_uri(); ?>/img/logo.png" alt="Logo" height="40">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse justify-content-end" id="navbarNav">
<ul class="navbar-nav align-items-center">
<li class="nav-item">
<a class="nav-link <?php echo (is_page('home')) ? 'active' : ''; ?>" href="<?php echo esc_url(site_url()); ?>">Home</a>
</li>
<li class="nav-item">
<a class="nav-link <?php echo (is_page('about-us')) ? 'active' : ''; ?>" href="<?php echo esc_url(home_url('/about-us')); ?>">About Us</a>
</li>
<li class="nav-item">
<a class="nav-link <?php echo (is_page('founders')) ? 'active' : ''; ?>" href="<?php echo esc_url(home_url('/founders')); ?>">For Founders</a>
</li>
<li class="nav-item">
<a class="nav-link <?php echo (is_page('investors')) ? 'active' : ''; ?>" href="<?php echo esc_url(home_url('/investors')); ?>">For Investors</a>
</li>
<li class="nav-item">
<a class="btn btn-contact <?php echo (is_page('contact-us')) ? 'active' : ''; ?>" href="<?php echo esc_url(home_url('/contact-us')); ?>">Contact Us</a>
</li>
</ul>
</div>
</div>
</nav>
</section>