80 lines
3.1 KiB
PHP
80 lines
3.1 KiB
PHP
<?php
|
|
$basePath = '';
|
|
if ($_SERVER['HTTP_HOST'] === 'localhost' || $_SERVER['HTTP_HOST'] === '127.0.0.1') {
|
|
$basePath = '/magico-prototype';
|
|
}
|
|
?>
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en" class="light-style layout-navbar-fixed layout-menu-fixed layout-compact" dir="ltr"
|
|
data-theme="theme-default" data-assets-path="<?= $basePath ?>/assets/"
|
|
data-template="vertical-menu-template-no-customizer-starter">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport"
|
|
content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0" />
|
|
|
|
<title>company.magico</title>
|
|
|
|
<meta name="description" content="" />
|
|
|
|
<!-- Favicon -->
|
|
<link rel="icon" type="image/x-icon" href="<?= $basePath ?>/assets/img/favicon/favicon.ico" />
|
|
|
|
<!-- 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=Public+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap"
|
|
rel="stylesheet" />
|
|
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/fonts/boxicons.css" />
|
|
<!-- <link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/fonts/fontawesome.css" /> -->
|
|
<!-- <link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/fonts/flag-icons.css" /> -->
|
|
|
|
<!-- Core CSS -->
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/css/rtl/core.css" />
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/css/rtl/theme-default.css" />
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/css/demo.css" />
|
|
|
|
<!-- Vendors CSS -->
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/vendor/libs/perfect-scrollbar/perfect-scrollbar.css" />
|
|
|
|
<!-- Page CSS -->
|
|
|
|
<!-- Helpers -->
|
|
<script src="<?= $basePath ?>/assets/vendor/js/helpers.js"></script>
|
|
<!--! Template customizer & Theme config files MUST be included after core stylesheets and helpers.js in the <head> section -->
|
|
<!--? Config: Mandatory theme config file contain global vars & default theme options, Set your preferred theme option in this file. -->
|
|
<script src="<?= $basePath ?>/assets/js/config.js"></script>
|
|
|
|
<?php if (!empty($enablePrototypeComments) && $enablePrototypeComments): ?>
|
|
<link rel="stylesheet" href="<?= $basePath ?>/assets/css/comments.css">
|
|
<?php endif; ?>
|
|
|
|
<style>
|
|
@media (min-width: 1200px) {
|
|
|
|
.layout-menu-fixed .layout-menu,
|
|
.layout-menu-fixed-offcanvas .layout-menu {
|
|
padding-top: 50px;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- Layout wrapper -->
|
|
<div class="layout-wrapper layout-content-navbar">
|
|
<div class="layout-container">
|
|
<!-- Menu -->
|
|
|
|
<?php include 'menu.php'; ?>
|
|
<!-- / Menu -->
|
|
|
|
<!-- Layout container -->
|
|
<div class="layout-page pt-0" style="padding-top: 0 !important;">
|
|
|
|
<!-- Content wrapper -->
|
|
<div class="content-wrapper">
|