227 lines
4.2 KiB
HTML
227 lines
4.2 KiB
HTML
|
<!doctype html>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<html
|
|||
|
class="not-ready lg:text-base"
|
|||
|
style="--bg: #faf8f1"
|
|||
|
lang="en-us"
|
|||
|
dir="ltr"
|
|||
|
>
|
|||
|
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
|||
|
<meta charset="utf-8" />
|
|||
|
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|||
|
<meta
|
|||
|
name="viewport"
|
|||
|
content="width=device-width, initial-scale=1, shrink-to-fit=no"
|
|||
|
/>
|
|||
|
|
|||
|
|
|||
|
<title>404 Page not found - My New Hugo Site</title>
|
|||
|
|
|||
|
|
|||
|
<meta name="theme-color" />
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<meta
|
|||
|
name="description"
|
|||
|
content="A personal blog"
|
|||
|
/>
|
|||
|
<meta name="author" content="My New Hugo Site" />
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<link rel="preload stylesheet" as="style" href="http://localhost:1313/main.min.css" />
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<link rel="preload" as="image" href="http://localhost:1313/theme.png" />
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<link
|
|||
|
rel="icon"
|
|||
|
href="http://localhost:1313/favicon.ico"
|
|||
|
/>
|
|||
|
<link
|
|||
|
rel="apple-touch-icon"
|
|||
|
href="http://localhost:1313/apple-touch-icon.png"
|
|||
|
/>
|
|||
|
|
|||
|
|
|||
|
<meta name="generator" content="Hugo 0.140.2">
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
</head>
|
|||
|
|
|||
|
<body class="text-black duration-200 ease-out dark:text-white">
|
|||
|
<header class="mx-auto flex h-[4.5rem] max-w-[--w] px-8 lg:justify-center">
|
|||
|
<div class="relative z-50 ltr:mr-auto rtl:ml-auto flex items-center">
|
|||
|
<a class="-translate-y-[1px] text-2xl font-medium" href="http://localhost:1313/"
|
|||
|
>My New Hugo Site</a
|
|||
|
>
|
|||
|
<div
|
|||
|
class="btn-dark text-[0] ltr:ml-4 rtl:mr-4 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.png)_left_center/_auto_theme('spacing.6')_no-repeat] [transition:_background-position_0.4s_steps(5)] dark:[background-position:right]"
|
|||
|
role="button"
|
|||
|
aria-label="Dark"
|
|||
|
></div>
|
|||
|
</div>
|
|||
|
|
|||
|
<div
|
|||
|
class="btn-menu relative z-50 ltr:-mr-8 rtl:-ml-8 flex h-[4.5rem] w-[5rem] shrink-0 cursor-pointer flex-col items-center justify-center gap-2.5 lg:hidden"
|
|||
|
role="button"
|
|||
|
aria-label="Menu"
|
|||
|
></div>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
<script>
|
|||
|
|
|||
|
const htmlClass = document.documentElement.classList;
|
|||
|
setTimeout(() => {
|
|||
|
htmlClass.remove('not-ready');
|
|||
|
}, 10);
|
|||
|
|
|||
|
|
|||
|
const btnMenu = document.querySelector('.btn-menu');
|
|||
|
btnMenu.addEventListener('click', () => {
|
|||
|
htmlClass.toggle('open');
|
|||
|
});
|
|||
|
|
|||
|
|
|||
|
const metaTheme = document.querySelector('meta[name="theme-color"]');
|
|||
|
const lightBg = '#faf8f1'.replace(/"/g, '');
|
|||
|
const setDark = (isDark) => {
|
|||
|
metaTheme.setAttribute('content', isDark ? '#000' : lightBg);
|
|||
|
htmlClass[isDark ? 'add' : 'remove']('dark');
|
|||
|
localStorage.setItem('dark', isDark);
|
|||
|
};
|
|||
|
|
|||
|
|
|||
|
const darkScheme = window.matchMedia('(prefers-color-scheme: dark)');
|
|||
|
if (htmlClass.contains('dark')) {
|
|||
|
setDark(true);
|
|||
|
} else {
|
|||
|
const darkVal = localStorage.getItem('dark');
|
|||
|
setDark(darkVal ? darkVal === 'true' : darkScheme.matches);
|
|||
|
}
|
|||
|
|
|||
|
|
|||
|
darkScheme.addEventListener('change', (event) => {
|
|||
|
setDark(event.matches);
|
|||
|
});
|
|||
|
|
|||
|
|
|||
|
const btnDark = document.querySelector('.btn-dark');
|
|||
|
btnDark.addEventListener('click', () => {
|
|||
|
setDark(localStorage.getItem('dark') !== 'true');
|
|||
|
});
|
|||
|
</script>
|
|||
|
|
|||
|
<div
|
|||
|
class="nav-wrapper fixed inset-x-0 top-full z-40 flex h-full select-none flex-col justify-center pb-16 duration-200 dark:bg-black lg:static lg:h-auto lg:flex-row lg:!bg-transparent lg:pb-0 lg:transition-none"
|
|||
|
>
|
|||
|
|
|||
|
|
|||
|
|
|||
|
|
|||
|
</div>
|
|||
|
</header>
|
|||
|
|
|||
|
|
|||
|
<main
|
|||
|
class="prose prose-neutral relative mx-auto min-h-[calc(100vh-9rem)] max-w-[--w] px-8 pb-16 pt-14 dark:prose-invert"
|
|||
|
>
|
|||
|
|
|||
|
<h1
|
|||
|
class="absolute inset-x-8 bottom-20 top-0 flex items-center justify-center text-9xl"
|
|||
|
>
|
|||
|
404
|
|||
|
</h1>
|
|||
|
|
|||
|
</main>
|
|||
|
|
|||
|
<footer
|
|||
|
class="mx-auto flex h-[4.5rem] max-w-[--w] items-center px-8 text-xs uppercase tracking-wider opacity-60"
|
|||
|
>
|
|||
|
<div class="mr-auto">
|
|||
|
|
|||
|
© 2025
|
|||
|
<a class="link" href="http://localhost:1313/">My New Hugo Site</a>
|
|||
|
|
|||
|
</div>
|
|||
|
<a class="link mx-6" href="https://gohugo.io/" rel="noopener" target="_blank"
|
|||
|
>powered by hugo️️</a
|
|||
|
>️
|
|||
|
<a
|
|||
|
class="link"
|
|||
|
href="https://github.com/nanxiaobei/hugo-paper"
|
|||
|
rel="noopener"
|
|||
|
target="_blank"
|
|||
|
>hugo-paper</a
|
|||
|
>
|
|||
|
</footer>
|
|||
|
|
|||
|
</body>
|
|||
|
</html>
|