-
Notifications
You must be signed in to change notification settings - Fork 1
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 changed files
with
314 additions
and
5 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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
+++ | ||
menus = 'main' | ||
title = 'Contacts' | ||
+++ | ||
|
||
If you want to contact me, you can reach me with email: | ||
|
||
``` | ||
|
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,309 @@ | ||
<!doctype html> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<html | ||
class="not-ready lg:text-base" | ||
style="--bg: #faf8f1" | ||
lang="en-us" | ||
> | ||
<head><script src="/livereload.js?mindelay=10&v=2&port=65520&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>Contacts - Eason Li</title> | ||
|
||
|
||
<meta name="theme-color" /> | ||
|
||
|
||
|
||
|
||
|
||
<meta name="description" content="If you want to contact me, you can reach me with email: | ||
[email protected] " /> | ||
<meta name="author" content="Eason Li" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload stylesheet" as="style" href="http://localhost:65520/main.min.css" /> | ||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="http://localhost:65520/theme.png" /> | ||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="https://www.gravatar.com/avatar/2b69b0fad4032dbef5cef82772fe16de?s=160&d=identicon" /> | ||
|
||
|
||
|
||
|
||
|
||
<link rel="preload" as="image" href="http://localhost:65520/twitter.svg" /> | ||
|
||
<link rel="preload" as="image" href="http://localhost:65520/github.svg" /> | ||
|
||
|
||
|
||
|
||
|
||
<script | ||
defer | ||
src="http://localhost:65520/highlight.min.js" | ||
onload="hljs.initHighlightingOnLoad();" | ||
></script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<link rel="icon" href="http://localhost:65520/favicon.ico" /> | ||
<link rel="apple-touch-icon" href="http://localhost:65520/apple-touch-icon.png" /> | ||
|
||
|
||
<meta name="generator" content="Hugo 0.124.1"> | ||
|
||
|
||
|
||
|
||
</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="http://localhost:65520/" | ||
>Eason Li</a | ||
> | ||
<div | ||
class="btn-dark text-[0] ml-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 -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="lg:ml-12 lg:flex lg:flex-row lg:items-center lg:space-x-6"> | ||
|
||
<a | ||
class="block text-center text-2xl leading-[5rem] lg:text-base lg:font-normal" | ||
href="/contacts/" | ||
>Contacts</a | ||
> | ||
|
||
</nav> | ||
|
||
|
||
|
||
<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(./twitter.svg)" | ||
href="https://twitter.com/404" | ||
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(./github.svg)" | ||
href="https://github.com/eli32-vlc" | ||
target="_blank" | ||
rel="me" | ||
> | ||
github | ||
</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" | ||
> | ||
|
||
|
||
<article> | ||
<header class="mb-16"> | ||
<h1 class="!my-0 pb-2.5">Contacts</h1> | ||
|
||
|
||
</header> | ||
|
||
<section><p>If you want to contact me, you can reach me with email:</p> | ||
<pre tabindex="0"><code>[email protected] | ||
</code></pre></section> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
<div class="mt-24" id="disqus_thread"></div> | ||
<script> | ||
const disqusShortname = 'easonli'; | ||
const script = document.createElement('script'); | ||
script.src = 'https://' + disqusShortname + '.disqus.com/embed.js'; | ||
script.setAttribute('data-timestamp', +new Date()); | ||
document.head.appendChild(script); | ||
</script> | ||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
</article> | ||
|
||
|
||
</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"> | ||
© 2024 | ||
<a class="link" href="http://localhost:65520/">Eason Li</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" | ||
>✎ Paper</a | ||
> | ||
</footer> | ||
|
||
</body> | ||
</html> |
This file was deleted.
Oops, something went wrong.