51 lines
2.3 KiB
PHP
51 lines
2.3 KiB
PHP
<?php
|
|
// Default project details if not set in environment
|
|
$projectName = htmlspecialchars(getenv('PROJECT_NAME') ?: 'Verified Local Directory');
|
|
$projectDescription = htmlspecialchars(getenv('PROJECT_DESCRIPTION') ?: 'A searchable, vetted directory of local businesses and professionals.');
|
|
$projectImageUrl = htmlspecialchars(getenv('PROJECT_IMAGE_URL') ?: 'assets/images/og_image.jpg'); // A default image
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo $projectName; ?> - Find Trusted Local Businesses</title>
|
|
|
|
<!-- SEO and Meta Tags -->
|
|
<meta name="description" content="<?php echo $projectDescription; ?>">
|
|
<meta name="robots" content="index, follow">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="<?php echo $projectName; ?>">
|
|
<meta property="og:description" content="<?php echo $projectDescription; ?>">
|
|
<meta property="og:image" content="<?php echo $projectImageUrl; ?>">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:title" content="<?php echo $projectName; ?>">
|
|
<meta property="twitter:description" content="<?php echo $projectDescription; ?>">
|
|
<meta property="twitter:image" content="<?php echo $projectImageUrl; ?>">
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<!-- Bootstrap Icons -->
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css">
|
|
|
|
<!-- Google Fonts -->
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&family=Roboto:wght@700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Custom CSS with cache-busting -->
|
|
<link rel="stylesheet" href="assets/css/custom.css?v=<?php echo time(); ?>">
|
|
</head>
|
|
<body>
|
|
|
|
<!-- Header -->
|
|
<nav class="navbar navbar-expand-lg navbar-dark">
|
|
<div class="container">
|
|
<a class="navbar-brand fw-bold" href="index.php"><?php echo $projectName; ?></a>
|
|
</div>
|
|
</nav>
|