- H1: add primary keyword (AI Automation for UK Law Firms & Consultancies) - Hero subtitle: replace old scraping copy with accurate consultancy copy - WebPage schema name aligned with title tag - Organization schema: add telephone, fix sameAs (remove broken social URLs) - robots.txt: add 5 missing AI crawlers (Applebot-Extended, Bytespider, CCBot, FacebookBot, Amazonbot) - llms.txt: add Key Pages section with 7 linked pages - sitemap.xml: add 4 legal pages (privacy, terms, cookie, gdpr) - Icon alt texts: simplify 6 keyword-stuffed verbose alts - Nav logo: add width/height dimensions, switch to loading=eager
40 lines
1.9 KiB
PHP
40 lines
1.9 KiB
PHP
<?php
|
|
$current_path = parse_url($_SERVER['REQUEST_URI'], PHP_URL_PATH);
|
|
$current_path = rtrim($current_path, '/');
|
|
if ($current_path === '') $current_path = '/';
|
|
|
|
function nav_active($href, $current) {
|
|
// Exact match
|
|
if ($href === $current) return ' active';
|
|
// Section match (e.g. /tools/ matches /tools/cost-calculator)
|
|
$href_trimmed = rtrim($href, '/');
|
|
if ($href_trimmed !== '' && $href_trimmed !== '/' && strpos($current, $href_trimmed) === 0) return ' active';
|
|
return '';
|
|
}
|
|
?>
|
|
<!-- Navigation -->
|
|
<nav class="navbar" id="navbar" aria-label="Main navigation">
|
|
<div class="nav-container">
|
|
<div class="nav-logo">
|
|
<a href="/">
|
|
<img src="/assets/images/ukaiautomation-logo.svg" alt="UK AI Automation" class="logo" width="200" height="56" loading="eager">
|
|
</a>
|
|
</div>
|
|
<div class="nav-menu" id="nav-menu">
|
|
<a href="/" class="nav-link<?php echo $current_path === '/' ? ' active' : ''; ?>">Home</a>
|
|
<a href="/#services" class="nav-link<?php echo (strpos($current_path, '/services') === 0) ? ' active' : ''; ?>">Services</a>
|
|
<a href="/case-studies" class="nav-link<?php echo nav_active('/case-studies', $current_path); ?>">Case Studies</a>
|
|
<a href="/about" class="nav-link<?php echo nav_active('/about', $current_path); ?>">About</a>
|
|
|
|
<a href="/blog/" class="nav-link<?php echo nav_active('/blog', $current_path); ?>">Blog</a>
|
|
<a href="/#contact" class="nav-link">Contact</a>
|
|
<a href="/quote" class="nav-link cta-button<?php echo nav_active('/quote', $current_path); ?>">Get a Quote</a>
|
|
</div>
|
|
<button class="nav-toggle" id="nav-toggle" aria-expanded="false" aria-controls="nav-menu" aria-label="Toggle navigation menu">
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
<span class="bar"></span>
|
|
</button>
|
|
</div>
|
|
</nav>
|