77 lines
3.4 KiB
PHP
77 lines
3.4 KiB
PHP
<?php
|
|
function page_title($title) {
|
|
$base_title = 'Dreamz Destination - Come See The World With Us';
|
|
if (isset($title) && !empty($title)) {
|
|
return $title . ' | ' . $base_title;
|
|
}
|
|
return $base_title;
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo page_title($page_title ?? null); ?></title>
|
|
|
|
<!-- SEO Meta Tags -->
|
|
<meta name="description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Luxury travel and tour packages by Dreamz Destination.'); ?>">
|
|
<meta name="keywords" content="luxury travel, tours, vacation, international tours, domestic tours">
|
|
|
|
<!-- Open Graph / Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="Dreamz Destination">
|
|
<meta property="og:description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Come See The World With Us'); ?>">
|
|
<meta property="og:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
|
|
<!-- Twitter -->
|
|
<meta property="twitter:card" content="summary_large_image">
|
|
<meta property="twitter:title" content="Dreamz Destination">
|
|
<meta property="twitter:description" content="<?php echo htmlspecialchars($_SERVER['PROJECT_DESCRIPTION'] ?? 'Come See The World With Us'); ?>">
|
|
<meta property="twitter:image" content="<?php echo htmlspecialchars($_SERVER['PROJECT_IMAGE_URL'] ?? ''); ?>">
|
|
|
|
<!-- Favicons -->
|
|
<link href="assets/images/favicon.png" rel="icon">
|
|
|
|
<!-- 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=Lato:wght@400;700&family=Playfair+Display:wght@700&display=swap" rel="stylesheet">
|
|
|
|
<!-- Vendor CSS Files -->
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.css" rel="stylesheet">
|
|
|
|
<!-- Main CSS File -->
|
|
<link href="assets/css/custom.css?v=<?php echo time(); ?>" rel="stylesheet">
|
|
|
|
</head>
|
|
<body>
|
|
|
|
<!-- ======= Header ======= -->
|
|
<header id="header" class="header fixed-top d-flex align-items-center">
|
|
<div class="container d-flex align-items-center justify-content-between">
|
|
|
|
<a href="index.php" class="logo d-flex align-items-center">
|
|
<h1>Dreamz Destination</h1>
|
|
</a>
|
|
|
|
<nav id="navbar" class="navbar">
|
|
<ul>
|
|
<li><a class="nav-link scrollto active" href="index.php">Home</a></li>
|
|
<li><a class="nav-link scrollto" href="about.php">About</a></li>
|
|
<li class="dropdown"><a href="tours.php"><span>Tours</span> <i class="bi bi-chevron-down"></i></a>
|
|
<ul>
|
|
<li><a href="tours.php?category=domestic">Domestic</a></li>
|
|
<li><a href="tours.php?category=international">International</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a class="nav-link scrollto" href="services.php">Services</a></li>
|
|
<li><a class="nav-link scrollto" href="blog.php">Blog</a></li>
|
|
<li><a class="getstarted scrollto" href="contact.php">Contact Us</a></li>
|
|
</ul>
|
|
<i class="bi bi-list mobile-nav-toggle"></i>
|
|
</nav><!-- .navbar -->
|
|
|
|
</div>
|
|
</header><!-- End Header -->
|