99 lines
5.0 KiB
HTML
99 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<!-- Required meta tags -->
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"><!-- End Required meta tags -->
|
|
<!-- Begin SEO tag -->
|
|
<title> Error 404: Page not found | Looper - Bootstrap 4 Admin Theme </title>
|
|
<meta property="og:title" content="Error 404: Page not found">
|
|
<meta name="author" content="Beni Arisandi">
|
|
<meta property="og:locale" content="en_US">
|
|
<meta name="description" content="Responsive admin theme build on top of Bootstrap 4">
|
|
<meta property="og:description" content="Responsive admin theme build on top of Bootstrap 4">
|
|
<link rel="canonical" href="https://uselooper.com">
|
|
<meta property="og:url" content="https://uselooper.com">
|
|
<meta property="og:site_name" content="Looper - Bootstrap 4 Admin Theme">
|
|
<script type="application/ld+json">
|
|
{
|
|
"name": "Looper - Bootstrap 4 Admin Theme",
|
|
"description": "Responsive admin theme build on top of Bootstrap 4",
|
|
"author":
|
|
{
|
|
"@type": "Person",
|
|
"name": "Beni Arisandi"
|
|
},
|
|
"@type": "WebSite",
|
|
"url": "",
|
|
"headline": "Error 404: Page not found",
|
|
"@context": "http://schema.org"
|
|
}
|
|
</script><!-- End SEO tag -->
|
|
<!-- Favicons -->
|
|
<link rel="apple-touch-icon" sizes="144x144" href="assets/apple-touch-icon.png">
|
|
<link rel="shortcut icon" href="assets/favicon.ico">
|
|
<meta name="theme-color" content="#3063A0"><!-- Google font -->
|
|
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600" rel="stylesheet"><!-- End Google font -->
|
|
<!-- BEGIN PLUGINS STYLES -->
|
|
<link rel="stylesheet" href="assets/vendor/@fortawesome/fontawesome-free/css/all.min.css"><!-- END PLUGINS STYLES -->
|
|
<!-- BEGIN THEME STYLES -->
|
|
<link rel="stylesheet" href="assets/stylesheets/theme.min.css" data-skin="default">
|
|
<link rel="stylesheet" href="assets/stylesheets/theme-dark.min.css" data-skin="dark">
|
|
<link rel="stylesheet" href="assets/stylesheets/custom.css">
|
|
<script>
|
|
var skin = localStorage.getItem('skin') || 'default';
|
|
var isCompact = JSON.parse(localStorage.getItem('hasCompactMenu'));
|
|
var disabledSkinStylesheet = document.querySelector('link[data-skin]:not([data-skin="' + skin + '"])');
|
|
// Disable unused skin immediately
|
|
disabledSkinStylesheet.setAttribute('rel', '');
|
|
disabledSkinStylesheet.setAttribute('disabled', true);
|
|
// add flag class to html immediately
|
|
if (isCompact == true) document.querySelector('html').classList.add('preparing-compact-menu');
|
|
</script><!-- END THEME STYLES -->
|
|
</head>
|
|
<body>
|
|
<!--[if lt IE 10]>
|
|
<div class="page-message" role="alert">You are using an <strong>outdated</strong> browser. Please <a class="alert-link" href="http://browsehappy.com/">upgrade your browser</a> to improve your experience and security.</div>
|
|
<![endif]-->
|
|
<!-- .empty-state -->
|
|
<main id="notfound-state" class="empty-state empty-state-fullpage bg-black">
|
|
<!-- .empty-state-container -->
|
|
<div class="empty-state-container">
|
|
<div class="card">
|
|
<div class="card-header bg-light text-left">
|
|
<i class="fa fa-fw fa-circle text-red"></i> <i class="fa fa-fw fa-circle text-yellow"></i> <i class="fa fa-fw fa-circle text-teal"></i>
|
|
</div>
|
|
<div class="card-body">
|
|
<h1 class="state-header display-1 font-weight-bold">
|
|
<span>4</span> <i class="far fa-frown text-red"></i> <span>4</span>
|
|
</h1>
|
|
<h3> Page not found! </h3>
|
|
<p class="state-description lead"> Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. </p>
|
|
<div class="state-action">
|
|
<a href="auth-error-v1.html" class="btn btn-lg btn-light"><i class="fa fa-angle-right"></i> Go Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div><!-- /.empty-state-container -->
|
|
</main><!-- /.empty-state -->
|
|
<!-- BEGIN BASE JS -->
|
|
<script src="assets/vendor/jquery/jquery.min.js"></script>
|
|
<script src="assets/vendor/popper.js/umd/popper.min.js"></script>
|
|
<script src="assets/vendor/bootstrap/js/bootstrap.min.js"></script> <!-- END BASE JS -->
|
|
<!-- BEGIN PLUGINS JS -->
|
|
<script src="assets/vendor/particles.js/particles.js"></script>
|
|
<script>
|
|
/**
|
|
* Keep in mind that your scripts may not always be executed after the theme is completely ready,
|
|
* you might need to observe the `theme:load` event to make sure your scripts are executed after the theme is ready.
|
|
*/
|
|
$(document).on('theme:init', () =>
|
|
{
|
|
/* particlesJS.load(@dom-id, @path-json, @callback (optional)); */
|
|
particlesJS.load('notfound-state', 'assets/javascript/pages/particles-error.json');
|
|
})
|
|
</script> <!-- END PLUGINS JS -->
|
|
<!-- BEGIN THEME JS -->
|
|
<script src="assets/javascript/theme.min.js"></script> <!-- END THEME JS -->
|
|
</body>
|
|
</html> |