87 lines
3.2 KiB
PHP
87 lines
3.2 KiB
PHP
<?php
|
|
// File: /resources/views/layouts/arsha.php
|
|
// Version: v1.0
|
|
// Purpose: Layout file for Arsha one-pager integration using Bootstrap 5+
|
|
// Project: Wizdom Networks Website
|
|
|
|
?>
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport">
|
|
<title><?= $pageTitle ?? 'Wizdom Networks' ?></title>
|
|
<meta content="" name="description">
|
|
<meta content="" name="keywords">
|
|
|
|
<!-- Favicons -->
|
|
<link href="/public/assets/img/favicon.png" rel="icon">
|
|
<link href="/public/assets/img/apple-touch-icon.png" rel="apple-touch-icon">
|
|
|
|
<!-- Google Fonts -->
|
|
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700|Raleway:300,400,500,600,700|Poppins:300,400,500,600,700" rel="stylesheet">
|
|
|
|
<!-- Vendor CSS Files -->
|
|
<link href="/public/assets/vendor/aos/aos.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/bootstrap-icons/bootstrap-icons.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/boxicons/css/boxicons.min.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/glightbox/css/glightbox.min.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/remixicon/remixicon.css" rel="stylesheet">
|
|
<link href="/public/assets/vendor/swiper/swiper-bundle.min.css" rel="stylesheet">
|
|
|
|
<!-- Main CSS File -->
|
|
<link href="/public/assets/css/style.css" rel="stylesheet">
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<!-- ======= Header ======= -->
|
|
<header id="header" class="fixed-top d-flex align-items-center">
|
|
<div class="container d-flex align-items-center justify-content-between">
|
|
<h1 class="logo"><a href="/">Wizdom</a></h1>
|
|
<nav id="navbar" class="navbar">
|
|
<ul>
|
|
<li><a class="nav-link scrollto active" href="#hero">Home</a></li>
|
|
<li><a class="nav-link scrollto" href="#about">About</a></li>
|
|
<li><a class="nav-link scrollto" href="#services">Services</a></li>
|
|
<li><a class="nav-link scrollto" href="#contact">Contact</a></li>
|
|
</ul>
|
|
<i class="bi bi-list mobile-nav-toggle"></i>
|
|
</nav>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- ======= Dynamic Content Injected Here ======= -->
|
|
<?= $content ?>
|
|
|
|
<!-- ======= Footer ======= -->
|
|
<footer id="footer">
|
|
<div class="container py-4">
|
|
<div class="copyright">
|
|
© Copyright <strong><span>Wizdom Networks</span></strong>. All Rights Reserved
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<a href="#" class="back-to-top d-flex align-items-center justify-content-center">
|
|
<i class="bi bi-arrow-up-short"></i>
|
|
</a>
|
|
|
|
<!-- Vendor JS Files -->
|
|
<script src="/public/assets/vendor/purecounter/purecounter_vanilla.js"></script>
|
|
<script src="/public/assets/vendor/aos/aos.js"></script>
|
|
<script src="/public/assets/vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
|
|
<script src="/public/assets/vendor/glightbox/js/glightbox.min.js"></script>
|
|
<script src="/public/assets/vendor/isotope-layout/isotope.pkgd.min.js"></script>
|
|
<script src="/public/assets/vendor/swiper/swiper-bundle.min.js"></script>
|
|
<script src="/public/assets/vendor/waypoints/noframework.waypoints.js"></script>
|
|
|
|
<!-- Main JS File -->
|
|
<script src="/public/assets/js/main.js"></script>
|
|
|
|
</body>
|
|
|
|
</html>
|