-
Notifications
You must be signed in to change notification settings - Fork 0
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
24 changed files
with
205 additions
and
1,616 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 |
---|---|---|
@@ -1,275 +1,3 @@ | ||
<!DOCTYPE html> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<html | ||
class="not-ready lg:text-base" | ||
style="--bg: #faf8f1" | ||
lang="en" | ||
> | ||
<head> | ||
<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 - 废话练习</title> | ||
|
||
|
||
<meta name="theme-color" /> | ||
|
||
|
||
|
||
|
||
|
||
<meta | ||
name="description" | ||
content="A personal blog" | ||
/> | ||
<meta name="author" content=" " /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload stylesheet" as="style" href="/main.min.css" /> | ||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="theme.png" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="instagram.svg" /> | ||
|
||
<link rel="preload" as="image" href="rss.svg" /> | ||
|
||
|
||
|
||
|
||
|
||
<link | ||
rel="stylesheet" | ||
href="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.css" | ||
integrity="sha384-3UiQGuEI4TTMaFmGIZumfRPtfKQ3trwQE2JgosJxCnGmQpL/lJdjpcHkaaFwHlcI" | ||
crossorigin="anonymous" | ||
/> | ||
<script | ||
defer | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/katex.min.js" | ||
integrity="sha384-G0zcxDFp5LWZtDuRMnBkk3EphCK1lhEf4UEyEM693ka574TZGwo4IWwS6QLzM/2t" | ||
crossorigin="anonymous" | ||
></script> | ||
<script | ||
defer | ||
src="https://cdn.jsdelivr.net/npm/[email protected]/dist/contrib/auto-render.min.js" | ||
integrity="sha384-+VBxd3r6XgURycqtZ117nYw44OOcIax56Z4dCRWbxyPt0Koah1uHoK0o4+/RRE05" | ||
crossorigin="anonymous" | ||
onload="renderMathInElement(document.body);" | ||
></script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="icon" href="favicon.ico" /> | ||
<link rel="apple-touch-icon" href="apple-touch-icon.png" /> | ||
|
||
|
||
<meta name="generator" content="Hugo 0.113.0"> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<meta property="og:title" content="404 Page not found" /> | ||
<meta property="og:description" content="" /> | ||
<meta property="og:type" content="website" /> | ||
<meta property="og:url" content="/404.html" /> | ||
|
||
|
||
<meta itemprop="name" content="404 Page not found"> | ||
<meta itemprop="description" content=""> | ||
|
||
<meta name="twitter:card" content="summary"/> | ||
<meta name="twitter:title" content="404 Page not found"/> | ||
<meta name="twitter:description" content=""/> | ||
|
||
|
||
|
||
</head> | ||
|
||
<body class="text-black duration-200 ease-out dark:text-white"> | ||
<header class="mx-auto flex h-[4.5rem] max-w-3xl px-8 lg:justify-center"> | ||
<div class="relative z-50 mr-auto flex items-center"> | ||
<a | ||
class="-translate-x-[1px] -translate-y-[1px] text-2xl font-semibold" | ||
href="" | ||
>废话练习</a | ||
> | ||
<div | ||
class="btn-dark text-[0] ml-4 h-6 w-6 shrink-0 cursor-pointer [background:url(./theme.svg)_left_center/cover_no-repeat] dark:invert dark:[background-position:right]" | ||
role="button" | ||
aria-label="Dark" | ||
></div> | ||
</div> | ||
|
||
<div | ||
class="btn-menu relative z-50 -mr-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" | ||
> | ||
|
||
|
||
|
||
|
||
<nav | ||
class="mt-12 flex justify-center space-x-10 dark:invert lg:ml-12 lg:mt-0 lg:items-center lg:space-x-6" | ||
> | ||
|
||
<a | ||
class="h-8 w-8 text-[0] [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6" | ||
style="--url: url(./instagram.svg)" | ||
href="https://instagram.com/iandzsc" | ||
target="_blank" | ||
rel="me" | ||
> | ||
</a> | ||
|
||
<a | ||
class="h-8 w-8 text-[0] [background:var(--url)_center_center/cover_no-repeat] lg:h-6 lg:w-6" | ||
style="--url: url(./rss.svg)" | ||
href="index.xml" | ||
target="_blank" | ||
rel="alternate" | ||
> | ||
rss | ||
</a> | ||
|
||
</nav> | ||
|
||
</div> | ||
</header> | ||
|
||
|
||
<main | ||
class="prose prose-neutral relative mx-auto min-h-[calc(100%-9rem)] max-w-3xl px-8 pb-16 pt-12 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="opaco mx-auto flex h-[4.5rem] max-w-3xl items-center px-8 text-[0.9em] opacity-60" | ||
> | ||
<div class="mr-auto"> | ||
© 2023 | ||
<a class="link" href="">废话练习</a> | ||
</div> | ||
|
||
</footer> | ||
|
||
</body> | ||
</html> | ||
<!doctype html><html lang=en dir=auto><head><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"><meta name=robots content="index, follow"><script src=https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/fancybox/fancybox.umd.js></script> | ||
<link rel=stylesheet href=https://cdn.jsdelivr.net/npm/@fancyapps/[email protected]/dist/fancybox/fancybox.css><link rel=stylesheet href=https://unpkg.com/@waline/client@v2/dist/waline.css><title>404 Page not found | 看见</title><meta name=keywords content><meta name=description content="ExampleSite description"><meta name=author content><link rel=canonical href=https://examplesite.com/404.html><meta name=google-site-verification content="XYZabc"><meta name=yandex-verification content="XYZabc"><meta name=msvalidate.01 content="XYZabc"><link crossorigin=anonymous href=/assets/css/stylesheet.526d5529b5f28b6de68a0fb54d95a92ef5e5da14467e04b74e7f8e2a4bb16537.css integrity="sha256-Um1VKbXyi23mig+1TZWpLvXl2hRGfgS3Tn+OKkuxZTc=" rel="preload stylesheet" as=style><link rel=icon href=https://examplesite.com/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=16x16 href=https://examplesite.com/%3Clink%20/%20abs%20url%3E><link rel=icon type=image/png sizes=32x32 href=https://examplesite.com/%3Clink%20/%20abs%20url%3E><link rel=apple-touch-icon href=https://examplesite.com/%3Clink%20/%20abs%20url%3E><link rel=mask-icon href=https://examplesite.com/%3Clink%20/%20abs%20url%3E><meta name=theme-color content="#2e2e33"><meta name=msapplication-TileColor content="#2e2e33"><noscript><style>#theme-toggle,.top-link{display:none}</style></noscript><script type=application/javascript>var doNotTrack=!1;doNotTrack||(function(e,t,n,s,o,i,a){e.GoogleAnalyticsObject=o,e[o]=e[o]||function(){(e[o].q=e[o].q||[]).push(arguments)},e[o].l=1*new Date,i=t.createElement(n),a=t.getElementsByTagName(n)[0],i.async=1,i.src=s,a.parentNode.insertBefore(i,a)}(window,document,"script","https://www.google-analytics.com/analytics.js","ga"),ga("create","UA-123-45","auto"),ga("send","pageview"))</script><meta property="og:title" content="404 Page not found"><meta property="og:description" content="ExampleSite description"><meta property="og:type" content="website"><meta property="og:url" content="https://examplesite.com/404.html"><meta property="og:image" content="https://examplesite.com/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E"><meta property="og:site_name" content="看见"><meta name=twitter:card content="summary_large_image"><meta name=twitter:image content="https://examplesite.com/%3Clink%20or%20path%20of%20image%20for%20opengraph,%20twitter-cards%3E"><meta name=twitter:title content="404 Page not found"><meta name=twitter:description content="ExampleSite description"></head><body class=list id=top><header class=header><nav class=nav><div class=logo><a href=https://examplesite.com/ accesskey=h title="看见 (Alt + H)"><img src=https://examplesite.com/apple-touch-icon.png alt aria-label=logo height=35>看见</a><div class=logo-switches></div></div><ul id=menu><li><a href=https://examplesite.com/tags/ title=tags><span>tags</span></a></li><li><a href=https://markview.me title=markview.me><span>markview.me</span> <svg fill="none" shape-rendering="geometricPrecision" stroke="currentcolor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" viewBox="0 0 24 24" height="12" width="12"><path d="M18 13v6a2 2 0 01-2 2H5a2 2 0 01-2-2V8a2 2 0 012-2h6"/><path d="M15 3h6v6"/><path d="M10 14 21 3"/></svg></a></li></ul></nav></header><main class=main><div class=not-found>404</div></main><footer class=footer><span>© 2023 <a href=https://examplesite.com/>看见</a></span> | ||
<span>瞎拍照 说废话</span></footer><a href=#top aria-label="go to top" title="Go to Top (Alt + G)" class=top-link id=top-link accesskey=g><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 12 6" fill="currentcolor"><path d="M12 6H0l6-6z"/></svg></a><script>let menu=document.getElementById("menu");menu&&(menu.scrollLeft=localStorage.getItem("menu-scroll-position"),menu.onscroll=function(){localStorage.setItem("menu-scroll-position",menu.scrollLeft)}),document.querySelectorAll('a[href^="#"]').forEach(e=>{e.addEventListener("click",function(e){e.preventDefault();var t=this.getAttribute("href").substr(1);window.matchMedia("(prefers-reduced-motion: reduce)").matches?document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView():document.querySelector(`[id='${decodeURIComponent(t)}']`).scrollIntoView({behavior:"smooth"}),t==="top"?history.replaceState(null,null," "):history.pushState(null,null,`#${t}`)})})</script><script>var mybutton=document.getElementById("top-link");window.onscroll=function(){document.body.scrollTop>800||document.documentElement.scrollTop>800?(mybutton.style.visibility="visible",mybutton.style.opacity="1"):(mybutton.style.visibility="hidden",mybutton.style.opacity="0")}</script></body></html> |
Oops, something went wrong.