-
Notifications
You must be signed in to change notification settings - Fork 309
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3,000 changed files
with
815,722 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html><!-- | ||
* CoreUI PRO Bootstrap Admin Template | ||
* @version v5.3.0 | ||
* @link https://coreui.io/product/bootstrap-dashboard-template/ | ||
* Copyright (c) 2024 creativeLabs Łukasz Holeczek | ||
* License (https://coreui.io/pro/license/) | ||
--> | ||
<html lang="en" dir="rtl"> | ||
<head> | ||
<base href="./"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | ||
<meta name="description" content="CoreUI - Bootstrap Admin Template"> | ||
<meta name="author" content="Łukasz Holeczek"> | ||
<meta name="keyword" content="Bootstrap,Admin,Template,SCSS,HTML,RWD,Dashboard"> | ||
<title>CoreUI Bootstrap Admin Template</title> | ||
<link rel="apple-touch-icon" sizes="57x57" href="assets/favicon/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="assets/favicon/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="assets/favicon/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="assets/favicon/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="assets/favicon/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="assets/favicon/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="assets/favicon/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="assets/favicon/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="assets/favicon/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="assets/favicon/manifest.json"> | ||
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="assets/favicon/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!-- Vendors styles--> | ||
<link rel="stylesheet" href="vendors/simplebar/css/simplebar.css"> | ||
<!-- Main styles for this application--> | ||
<link href="css/style.css" rel="stylesheet"> | ||
<!-- We use those styles to show code examples, you should remove them in your application.--> | ||
<link href="css/examples.css" rel="stylesheet"> | ||
<script src="js/config.js"></script> | ||
<script src="js/color-modes.js"></script> | ||
<!-- Google Tag Manager--> | ||
<script> | ||
(function(w, d, s, l, i) { | ||
w[l] = w[l] || []; | ||
w[l].push({ | ||
'gtm.start': new Date().getTime(), | ||
event: 'gtm.js' | ||
}); | ||
var f = d.getElementsByTagName(s)[0], | ||
j = d.createElement(s), | ||
dl = l != 'dataLayer' ? '&l=' + l : ''; | ||
j.async = true; | ||
j.src = | ||
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | ||
f.parentNode.insertBefore(j, f); | ||
})(window, document, 'script', 'dataLayer', 'GTM-KX4JH47'); | ||
</script> | ||
<!-- End Google Tag Manager--> | ||
</head> | ||
<body> | ||
<!-- Google Tag Manager (noscript)--> | ||
<noscript> | ||
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KX4JH47" height="0" width="0" style="display:none;visibility:hidden"></iframe> | ||
</noscript> | ||
<!-- End Google Tag Manager (noscript)--> | ||
<div class="min-vh-100 d-flex flex-row align-items-center"> | ||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-6"> | ||
<div class="clearfix"> | ||
<h1 class="float-start display-3 me-4">404</h1> | ||
<h4 class="pt-3">Oops! You're lost.</h4> | ||
<p class="text-body-secondary">The page you are looking for was not found.</p> | ||
</div> | ||
<div class="input-group"><span class="input-group-text"> | ||
<svg class="icon"> | ||
<use xlink:href="vendors/@coreui/icons/svg/free.svg#cil-magnifying-glass"></use> | ||
</svg></span> | ||
<input class="form-control" id="prependedInput" size="16" type="text" placeholder="What are you looking for?"> | ||
<button class="btn btn-info" type="button">Search</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- CoreUI and necessary plugins--> | ||
<script src="vendors/@coreui/coreui-pro/js/coreui.bundle.min.js"></script> | ||
<script src="vendors/simplebar/js/simplebar.min.js"></script> | ||
<script src="vendors/i18next/js/i18next.min.js"></script> | ||
<script src="vendors/i18next-http-backend/js/i18nextHttpBackend.js"></script> | ||
<script src="vendors/i18next-browser-languagedetector/js/i18nextBrowserLanguageDetector.js"></script> | ||
<script src="js/i18next.js"></script> | ||
<script> | ||
const header = document.querySelector('header.header'); | ||
|
||
document.addEventListener('scroll', () => { | ||
if (header) { | ||
header.classList.toggle('shadow-sm', document.documentElement.scrollTop > 0); | ||
} | ||
}); | ||
</script> | ||
<script> | ||
</script> | ||
|
||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,108 @@ | ||
<!DOCTYPE html><!-- | ||
* CoreUI PRO Bootstrap Admin Template | ||
* @version v5.3.0 | ||
* @link https://coreui.io/product/bootstrap-dashboard-template/ | ||
* Copyright (c) 2024 creativeLabs Łukasz Holeczek | ||
* License (https://coreui.io/pro/license/) | ||
--> | ||
<html lang="en" dir="rtl"> | ||
<head> | ||
<base href="./"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no"> | ||
<meta name="description" content="CoreUI - Bootstrap Admin Template"> | ||
<meta name="author" content="Łukasz Holeczek"> | ||
<meta name="keyword" content="Bootstrap,Admin,Template,SCSS,HTML,RWD,Dashboard"> | ||
<title>CoreUI Bootstrap Admin Template</title> | ||
<link rel="apple-touch-icon" sizes="57x57" href="assets/favicon/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="assets/favicon/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="assets/favicon/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="assets/favicon/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="assets/favicon/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="assets/favicon/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="assets/favicon/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="assets/favicon/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="assets/favicon/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="assets/favicon/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="assets/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="assets/favicon/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="assets/favicon/favicon-16x16.png"> | ||
<link rel="manifest" href="assets/favicon/manifest.json"> | ||
<meta name="msapplication-TileColor" content="#ffffff"> | ||
<meta name="msapplication-TileImage" content="assets/favicon/ms-icon-144x144.png"> | ||
<meta name="theme-color" content="#ffffff"> | ||
<!-- Vendors styles--> | ||
<link rel="stylesheet" href="vendors/simplebar/css/simplebar.css"> | ||
<!-- Main styles for this application--> | ||
<link href="css/style.css" rel="stylesheet"> | ||
<!-- We use those styles to show code examples, you should remove them in your application.--> | ||
<link href="css/examples.css" rel="stylesheet"> | ||
<script src="js/config.js"></script> | ||
<script src="js/color-modes.js"></script> | ||
<!-- Google Tag Manager--> | ||
<script> | ||
(function(w, d, s, l, i) { | ||
w[l] = w[l] || []; | ||
w[l].push({ | ||
'gtm.start': new Date().getTime(), | ||
event: 'gtm.js' | ||
}); | ||
var f = d.getElementsByTagName(s)[0], | ||
j = d.createElement(s), | ||
dl = l != 'dataLayer' ? '&l=' + l : ''; | ||
j.async = true; | ||
j.src = | ||
'https://www.googletagmanager.com/gtm.js?id=' + i + dl; | ||
f.parentNode.insertBefore(j, f); | ||
})(window, document, 'script', 'dataLayer', 'GTM-KX4JH47'); | ||
</script> | ||
<!-- End Google Tag Manager--> | ||
</head> | ||
<body> | ||
<!-- Google Tag Manager (noscript)--> | ||
<noscript> | ||
<iframe src="https://www.googletagmanager.com/ns.html?id=GTM-KX4JH47" height="0" width="0" style="display:none;visibility:hidden"></iframe> | ||
</noscript> | ||
<!-- End Google Tag Manager (noscript)--> | ||
<div class="min-vh-100 d-flex flex-row align-items-center"> | ||
<div class="container"> | ||
<div class="row justify-content-center"> | ||
<div class="col-md-6"> | ||
<div class="clearfix"> | ||
<h1 class="float-start display-3 me-4">500</h1> | ||
<h4 class="pt-3">Houston, we have a problem!</h4> | ||
<p class="text-body-secondary">The page you are looking for is temporarily unavailable.</p> | ||
</div> | ||
<div class="input-group"><span class="input-group-text"> | ||
<svg class="icon"> | ||
<use xlink:href="vendors/@coreui/icons/svg/free.svg#cil-magnifying-glass"></use> | ||
</svg></span> | ||
<input class="form-control" id="prependedInput" size="16" type="text" placeholder="What are you looking for?"> | ||
<button class="btn btn-info" type="button">Search</button> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
<!-- CoreUI and necessary plugins--> | ||
<script src="vendors/@coreui/coreui-pro/js/coreui.bundle.min.js"></script> | ||
<script src="vendors/simplebar/js/simplebar.min.js"></script> | ||
<script src="vendors/i18next/js/i18next.min.js"></script> | ||
<script src="vendors/i18next-http-backend/js/i18nextHttpBackend.js"></script> | ||
<script src="vendors/i18next-browser-languagedetector/js/i18nextBrowserLanguageDetector.js"></script> | ||
<script src="js/i18next.js"></script> | ||
<script> | ||
const header = document.querySelector('header.header'); | ||
|
||
document.addEventListener('scroll', () => { | ||
if (header) { | ||
header.classList.toggle('shadow-sm', document.documentElement.scrollTop > 0); | ||
} | ||
}); | ||
</script> | ||
<script> | ||
</script> | ||
|
||
</body> | ||
</html> |
Oops, something went wrong.