35 lines
1.1 KiB
PHP
35 lines
1.1 KiB
PHP
<?php
|
|
|
|
/**
|
|
* Head Partial
|
|
*
|
|
* This file includes metadata, stylesheets, and scripts necessary for rendering the site.
|
|
*/
|
|
|
|
?>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title><?php echo $title ?? 'Wizdom Networks'; ?></title>
|
|
|
|
<!-- Bootstrap CSS with 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 Hero Stylesheet -->
|
|
<?php if (isset($heroConfig)) : ?>
|
|
<link rel="stylesheet" href="/assets/css/hero.css">
|
|
<?php endif; ?>
|
|
|
|
<!-- Conditionally Load Slider Stylesheet -->
|
|
<?php if (isset($showSlider)) : ?>
|
|
<link rel="stylesheet" href="/assets/css/slider.css">
|
|
<?php endif; ?>
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/png" href="/assets/images/favicon.png">
|
|
|