Files
front.admin/src/layouts/content-combinations-overlay.html
2022-04-12 07:26:41 +02:00

178 lines
6.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<!-- Required Meta Tags Always Come First -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Title -->
<title>Overlay - Content Combinations | Front - Admin &amp; Dashboard Template</title>
<!-- Favicon -->
<link rel="shortcut icon" href="@@autopath/favicon.ico">
<!-- Font -->
<link href="@@vars.themeFont" rel="stylesheet">
<!-- CSS Implementing Plugins -->
<!-- bundlecss:vendor [@@autopath] -->
<link rel="stylesheet" href="@@autopath/node_modules/bootstrap-icons/font/bootstrap-icons.css">
<!-- CSS Front Template -->
<!-- bundlecss:theme [@@autopath] @@vars.version -->
@@if(layoutBuilder.extend.switcherSupport === false) {
<link rel="stylesheet" href="@@autopath/assets/css/theme@@if(themeAppearance.layoutSkin === 'dark'){-dark}.css">
}
@@if(layoutBuilder.extend.switcherSupport === true) {
<link rel="preload" href="@@autopath/assets/css/theme.css" data-hs-appearance="default" as="style">
<link rel="preload" href="@@autopath/assets/css/theme-dark.css" data-hs-appearance="dark" as="style">
<style data-hs-appearance-onload-styles>
* {
transition: unset !important;
}
body {
opacity: 0;
}
</style>
}
</head>
<body class="footer-offset has-navbar-vertical-aside navbar-vertical-aside-show-xl">
@@if(layoutBuilder.extend.switcherSupport === true) {
<script src="@@autopath/assets/js/hs.theme-appearance.js"></script>
}
<!-- ========== HEADER ========== -->
@@include("@@autopath/partials/navbar/basic.html")
<!-- ========== END HEADER ========== -->
<!-- ========== MAIN CONTENT ========== -->
<!-- Navbar Vertical -->
@@include("@@autopath/partials/sidebar/main.html", {
"category": "dashboards",
"subcategory": "",
"link": "index.html"
})
<!-- End Navbar Vertical -->
<main id="content" role="main" class="main">
<!-- Content -->
<div class="bg-dark">
<div class="content container-fluid" style="height: 25rem;">
<!-- Page Header -->
<div class="page-header page-header-light">
<div class="row align-items-center">
<div class="col">
<h1 class="page-header-title">Dashboard</h1>
</div>
<!-- End Col -->
<div class="col-auto">
<a class="btn btn-primary" href="#">My dashboard</a>
</div>
<!-- End Col -->
</div>
<!-- End Row -->
</div>
<!-- End Page Header -->
</div>
</div>
<!-- End Content -->
<!-- Content -->
<div class="content container-fluid" style="margin-top: -18rem;">
<!-- Card -->
<div class="card card-centered mb-3 mb-lg-5">
<div class="card-body py-10 my-lg-10">
<!-- Title -->
<div class="text-center">
<img class="img-fluid mb-5" src="@@autopath/assets/svg/layouts/content-combinations-overlay.svg" alt="Image Description" data-hs-theme-appearance="default" style="max-width: 15rem;">
<img class="img-fluid shadow-sm mb-5" src="@@autopath/assets/svg/layouts-light/content-combinations-overlay.svg" alt="Image Description" data-hs-theme-appearance="dark" style="max-width: 15rem;">
<h1>Overlay - Content Combinations</h1>
<p>Customize your overview page layout. Choose the one that best fits your needs.</p>
<a class="btn btn-primary" href="@@autopath/layouts/index.html">Go back to Layouts</a>
</div>
<!-- End Title -->
</div>
</div>
<!-- End Card -->
<!-- Card -->
<div class="card card-centered">
<div class="card-body py-10">
<img class="avatar avatar-xxl mb-3" src="@@autopath/assets/svg/illustrations/oc-megaphone.svg" alt="Image Description" data-hs-theme-appearance="default">
<img class="avatar avatar-xxl mb-3" src="@@autopath/assets/svg/illustrations-light/oc-megaphone.svg" alt="Image Description" data-hs-theme-appearance="dark">
<p class="card-text">No data to show</p>
<a class="btn btn-white btn-sm" href="@@autopath/index.html">Get Started</a>
</div>
</div>
<!-- End Card -->
</div>
<!-- End Content -->
<!-- Footer -->
@@include("@@autopath/partials/footer/main.html")
<!-- End Footer -->
</main>
<!-- ========== END MAIN CONTENT ========== -->
<!-- ========== SECONDARY CONTENTS ========== -->
<!-- Keyboard Shortcuts -->
@@include("@@autopath/partials/layouts-components/offcanvas-shortcuts.html")
<!-- End Keyboard Shortcuts -->
<!-- Activity -->
@@include("@@autopath/partials/layouts-components/offcanvas-activity.html")
<!-- End Activity -->
<!-- Welcome Message -->
@@include("@@autopath/partials/modals/welcome-message.html")
<!-- End Welcome Message -->
<!-- ========== END SECONDARY CONTENTS ========== -->
<!-- JS Global Compulsory @@deleteLine:build -->
<script src="@@autopath/node_modules/jquery/dist/jquery.min.js"></script>
<script src="@@autopath/node_modules/jquery-migrate/dist/jquery-migrate.min.js"></script>
<script src="@@autopath/node_modules/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<!-- JS Implementing Plugins -->
<!-- bundlejs:vendor [@@autopath] -->
<script src="@@autopath/assets/vendor/hs-navbar-vertical-aside/dist/hs-navbar-vertical-aside.min.js"></script>
<script src="@@autopath/assets/vendor/hs-form-search/dist/hs-form-search.min.js"></script>
<!-- JS Front -->
<!-- bundlejs:theme [@@autopath] -->
<script src="@@autopath/assets/js/hs.core.js"></script>
<script src="@@autopath/assets/js/hs.bs-dropdown.js"></script>
<!-- JS Plugins Init. -->
<script>
(function() {
// INITIALIZATION OF NAVBAR VERTICAL ASIDE
// =======================================================
new HSSideNav('.js-navbar-vertical-aside').init()
// INITIALIZATION OF BOOTSTRAP DROPDOWN
// =======================================================
HSBsDropdown.init()
// INITIALIZATION OF FORM SEARCH
// =======================================================
new HSFormSearch('.js-form-search')
})()
</script>
<!-- Style Switcher JS -->
@@if(layoutBuilder.extend.switcherSupport === true) {
@@include("@@autopath/partials/layouts-components/darkmode-switcher-js.html")
}
<!-- End Style Switcher JS -->
</body>
</html>