-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
eee2c2b
commit 7e9c1ad
Showing
57 changed files
with
9,259 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<!doctype html> | ||
<title>404 Not Found</title> | ||
<h1>404 Not Found</h1> |
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,173 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<title>About | </title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> | ||
|
||
<link rel="icon" type="image/png" href="/favicon.ico"> | ||
|
||
<style> | ||
:root { | ||
/* Primary theme color */ | ||
--primary-color: #FED43F; | ||
/* Primary theme text color */ | ||
--primary-text-color: #543631; | ||
--primary-text-color-over: #000; | ||
/* Primary theme link color */ | ||
--primary-link-color: #F9BB2D; | ||
/* Secondary color: the background body color */ | ||
--secondary-color: #fcfaf6; | ||
--secondary-text-color: #303030; | ||
/* Highlight text color of table of content */ | ||
--toc-highlight-text-color: #d46e13; | ||
--toc-background-color: white; | ||
--code-color: #4a4a4a; | ||
--code-background-color: white; | ||
|
||
--shadow-color: #ddd; | ||
|
||
/* Font used for headers (h1 & h2) */ | ||
--header-font-family: "Fira Sans", sans-serif; | ||
/* Font used for text */ | ||
--text-font-family: "Fira Sans", sans-serif; | ||
} | ||
|
||
@media (prefers-color-scheme: dark) { | ||
:root { | ||
--primary-color: #382929; | ||
--primary-text-color: #d7d7d7; | ||
--primary-text-color-over: #FFF; | ||
--primary-link-color: #9b9b9b; | ||
--secondary-color: #282828; | ||
--secondary-text-color: #f2f2f2; | ||
--toc-highlight-text-color: #f2f2f2; | ||
--toc-background-color: #3a3a3a; | ||
--code-color: white; | ||
--code-background-color: #4a4a4a; | ||
|
||
--shadow-color: #202020; | ||
--header-font-family: "Fira Sans", sans-serif; | ||
--text-font-family: "Fira Sans", sans-serif; | ||
} | ||
} | ||
</style> | ||
|
||
|
||
<link href="https://fonts.googleapis.com/css?family=Alfa+Slab+One&display=swap" rel="stylesheet"> | ||
<link href="https://fonts.googleapis.com/css?family=Fira+Sans:400,500,600&display=swap" rel="stylesheet"> | ||
|
||
<link rel="stylesheet" href="/normalize.css"> | ||
<link rel="stylesheet" href="https://hickory-dns.org/juice.css"> | ||
|
||
|
||
</head> | ||
|
||
<body> | ||
|
||
<header class="box-shadow"> | ||
|
||
|
||
<a href="https://hickory-dns.org/"> | ||
<div class="logo"> | ||
<img src="https://hickory-dns.org/logo.png" alt="logo"> | ||
Hickory DNS | ||
</div> | ||
</a> | ||
|
||
<nav> | ||
|
||
|
||
|
||
<a class="nav-item subtitle-text" href="https://hickory-dns.org/about/">About</a> | ||
|
||
|
||
|
||
|
||
<a class="nav-item subtitle-text" href="https://hickory-dns.org/manual/">Manual</a> | ||
|
||
|
||
|
||
|
||
<a class="nav-item subtitle-text" href="https://github.com/hickory-dns/hickory-dns">Github</a> | ||
|
||
|
||
</nav> | ||
|
||
</header> | ||
|
||
|
||
<main> | ||
|
||
|
||
|
||
|
||
|
||
<div class="toc"> | ||
<div class="toc-sticky"> | ||
|
||
<div class="toc-item"> | ||
<a class="subtext" href="https://hickory-dns.org/about/#hickory-dns">Hickory DNS</a> | ||
</div> | ||
|
||
|
||
<div class="toc-item"> | ||
<a class="subtext" href="https://hickory-dns.org/about/#logo">Logo</a> | ||
</div> | ||
|
||
|
||
</div> | ||
</div> | ||
|
||
|
||
|
||
<div class="content text"> | ||
|
||
<div class="heading-text">About</div> | ||
<h1 id="hickory-dns">Hickory DNS</h1> | ||
<p><strong>Hickory DNS</strong> is a DNS framework and Server</p> | ||
<h1 id="logo">Logo</h1> | ||
<p><img src="/logo.png" alt="" /></p> | ||
|
||
|
||
</div> | ||
|
||
|
||
|
||
</main> | ||
|
||
|
||
<footer> | ||
<small class="subtext"> | ||
<a href="https://huhu.io">Huhu.io</a> © 2021 | ||
</small> | ||
</footer> | ||
|
||
</body> | ||
<script> | ||
const scrollHandler = entries => { | ||
// Find the first entry which intersecting and ratio > 0.9 to highlight. | ||
let entry = entries.find(entry => { | ||
return entry.isIntersecting && entry.intersectionRatio > 0.9; | ||
}); | ||
if (!entry) return; | ||
|
||
document.querySelectorAll(".toc a").forEach((item) => { | ||
item.classList.remove("active"); | ||
}); | ||
|
||
// let url = new URL(`#${entry.target.id}`); | ||
let link = document.querySelector(`.toc a[href$="${decodeURIComponent(`#${entry.target.id}`)}"]`) | ||
if (link) { | ||
link.classList.add("active"); | ||
link.scrollIntoView({ behavior: "auto", block: "nearest" }); | ||
} | ||
}; | ||
// Set -100px root margin to improve highlight experience. | ||
const observer = new IntersectionObserver(scrollHandler, { threshold: 1 }); | ||
let items = document.querySelectorAll('h1,h2,h3,h4,h5,h6'); | ||
items.forEach(item => observer.observe(item)); | ||
</script> | ||
|
||
</html> |
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 @@ | ||
This file makes sure that Github Pages doesn't process mdBook's output. |
Oops, something went wrong.