24 lines
828 B
PHP
24 lines
828 B
PHP
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo $title ?? 'Wizdom Networks'; ?></title>
|
|
|
|
<!-- Bootstrap CSS -->
|
|
<!-- Bootstrap CDN with local fallback -->
|
|
<link rel="stylesheet"
|
|
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css"
|
|
onerror="this.onerror=null;this.href='/assets/bootstrap/css/bootstrap.min.css';">
|
|
|
|
|
|
<!-- Main Stylesheet -->
|
|
<!-- <link rel="stylesheet" href="/assets/css/styles.css"> -->
|
|
|
|
<!-- Conditionally Load Slider Stylesheet -->
|
|
<?php if (!empty($showSlider)) : ?>
|
|
<link rel="stylesheet" href="/assets/css/slider.css">
|
|
<?php endif; ?>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
|
</head>
|