163 lines
5.0 KiB
HTML
163 lines
5.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en"><head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<style>
|
|
:root {
|
|
--accent-color: #FF4D4D;
|
|
--font-size: 1.1rem;
|
|
}
|
|
</style>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<title>404 Page not found</title>
|
|
<meta name="description" content="">
|
|
<meta name="keywords" content=''>
|
|
|
|
<meta property="og:url" content="https://rabids.twojastara.eu/404.html">
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="404 Page not found">
|
|
<meta property="og:description" content="">
|
|
<meta property="og:image" content="https://rabids.twojastara.eu/">
|
|
<meta property="og:image:secure_url" content="https://rabids.twojastara.eu/">
|
|
|
|
<meta name="twitter:card" content="summary_large_image">
|
|
<meta name="twitter:title" content="404 Page not found">
|
|
<meta name="twitter:description" content="">
|
|
<meta property="twitter:domain" content="https://rabids.twojastara.eu/404.html">
|
|
<meta property="twitter:url" content="https://rabids.twojastara.eu/404.html">
|
|
<meta name="twitter:image" content="https://rabids.twojastara.eu/">
|
|
|
|
|
|
<link rel="canonical" href="https://rabids.twojastara.eu/404.html">
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/normalize.min.css" media="print">
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/main.min.css">
|
|
|
|
|
|
<link id="dark-theme" rel="stylesheet" href="/css/dark.min.css">
|
|
|
|
|
|
<script src="/js/bundle.min.7136b4abac7b277aba8bc933917f4602d39a5c44f5590be687244bc86ef4f162.js" integrity="sha256-cTa0q6x7J3q6i8kzkX9GAtOaXET1WQvmhyRLyG708WI="></script>
|
|
|
|
|
|
|
|
|
|
|
|
</head>
|
|
<body>
|
|
<script>
|
|
|
|
setThemeByUserPref();
|
|
</script><header class="header">
|
|
<nav class="header-nav">
|
|
|
|
|
|
|
|
<div class="nav-title">
|
|
<a class="nav-brand" href="https://rabids.twojastara.eu/">R.A.B.I.D.s</a>
|
|
</div>
|
|
|
|
<div class="nav-links">
|
|
|
|
<div class="nav-link">
|
|
<a href="https://rabids.twojastara.eu/posts/" aria-label="" > Posts </a>
|
|
</div>
|
|
|
|
<div class="nav-link">
|
|
<a href="https://rabids.twojastara.eu/tags/" aria-label="" > Tags </a>
|
|
</div>
|
|
|
|
<div class="nav-link">
|
|
<a href="https://github.com" aria-label="github" ><span data-feather='github'></span> </a>
|
|
</div>
|
|
|
|
|
|
<span class="nav-icons-divider"></span>
|
|
<div class="nav-link dark-theme-toggle">
|
|
<span class="sr-only dark-theme-toggle-screen-reader-target">theme</span>
|
|
<a aria-hidden="true" role="switch">
|
|
<span class="theme-toggle-icon" data-feather="moon"></span>
|
|
</a>
|
|
</div>
|
|
|
|
<div class="nav-link" id="hamburger-menu-toggle">
|
|
<span class="sr-only hamburger-menu-toggle-screen-reader-target">menu</span>
|
|
<a aria-checked="false" aria-labelledby="hamburger-menu-toggle" id="hamburger-menu-toggle-target" role="switch">
|
|
<span data-feather="menu"></span>
|
|
</a>
|
|
</div>
|
|
|
|
|
|
<ul class="nav-hamburger-list visibility-hidden">
|
|
|
|
<li class="nav-item">
|
|
<a href="https://rabids.twojastara.eu/posts/" > Posts </a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a href="https://rabids.twojastara.eu/tags/" > Tags </a>
|
|
</li>
|
|
|
|
<li class="nav-item">
|
|
<a href="https://github.com" ><span data-feather='github'></span> </a>
|
|
</li>
|
|
|
|
<li class="nav-item dark-theme-toggle">
|
|
<span class="sr-only dark-theme-toggle-screen-reader-target">theme</span>
|
|
<a role="switch">
|
|
<span class="theme-toggle-icon" data-feather="moon"></span>
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
</div>
|
|
</nav>
|
|
</header>
|
|
<main id="content">
|
|
|
|
<div class="text-404">
|
|
<h1 class="error-emoji"></h1>
|
|
<h2>
|
|
404 ... This page does not exist, go <a href="https://rabids.twojastara.eu/">home</a>
|
|
</h2>
|
|
</div>
|
|
<script>
|
|
const errorEmojiContainer = document.getElementsByClassName('error-emoji')[0];
|
|
const emojiArray = [
|
|
'\\(o_o)/', '(o^^)o', '(˚Δ˚)b', '(^-^*)', '(≥o≤)', '(^_^)b', '(·_·)',
|
|
'(=\'X\'=)', '(>_<)', '(;-;)', '\\(^Д^)/',
|
|
];
|
|
const errorEmoji = emojiArray[Math.floor(Math.random() * emojiArray.length)];
|
|
errorEmojiContainer.appendChild(document.createTextNode(errorEmoji));
|
|
</script>
|
|
|
|
|
|
</main><footer class="footer">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<span>
|
|
Made with ❤️ using <a target="_blank" href="https://github.com/gokarna-theme/gokarna-hugo">Gokarna</a>
|
|
</span>
|
|
</footer>
|
|
</body>
|
|
</html>
|