Compare commits
10 commits
cf27cfb1fc
...
8a1d0f8f5a
Author | SHA1 | Date | |
---|---|---|---|
![]() |
8a1d0f8f5a | ||
![]() |
3119b641a2 | ||
![]() |
dd78628838 | ||
![]() |
17fdb119e0 | ||
![]() |
8df950903b | ||
![]() |
d80988cd03 | ||
![]() |
7f3cae0a0d | ||
![]() |
02ed01f85b | ||
![]() |
0bef55a773 | ||
![]() |
a46d2d1a92 |
17 changed files with 1081 additions and 61 deletions
|
@ -1,9 +1,6 @@
|
||||||
#on: [push]
|
#on: [push]
|
||||||
#jobs:
|
#jobs:
|
||||||
# test:
|
# test:
|
||||||
# runs-on: bookworm
|
|
||||||
# steps:
|
|
||||||
# - run: echo All Good
|
|
||||||
on: [push]
|
on: [push]
|
||||||
jobs:
|
jobs:
|
||||||
publish:
|
publish:
|
||||||
|
@ -16,9 +13,14 @@ jobs:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: public branch
|
- name: public branch
|
||||||
run: |
|
run: |
|
||||||
git checkout -b pages
|
git config --global user.name "Jordan Herzstein"
|
||||||
|
git config --global user.email "git@jordanherzstein.com"
|
||||||
|
git checkout pages
|
||||||
|
git rm -rf .
|
||||||
git checkout main -- public
|
git checkout main -- public
|
||||||
git add public
|
mv public/* .
|
||||||
|
git rm -r public/
|
||||||
|
git add .
|
||||||
git commit -m "deploying page"
|
git commit -m "deploying page"
|
||||||
git push origin pages
|
git push origin pages
|
||||||
|
|
||||||
|
|
227
404.html
Normal file
227
404.html
Normal file
|
@ -0,0 +1,227 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>404</title>
|
||||||
|
<meta name="title" content="404 Page not found" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
<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 name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="404 Page not found"/>
|
||||||
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta itemprop="name" content="404 Page not found">
|
||||||
|
<meta itemprop="description" content="">
|
||||||
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 720px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3273dc;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-decoration: none;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title span {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
content {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 2px 5px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #222;
|
||||||
|
display: block;
|
||||||
|
padding: 20px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight pre {
|
||||||
|
background-color: initial;
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight code {
|
||||||
|
background-color: unset;
|
||||||
|
color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left: 1px solid #999;
|
||||||
|
color: #222;
|
||||||
|
padding-left: 20px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
padding: 25px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #777;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
color: #eba613;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.blog-posts {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li span {
|
||||||
|
flex: 0 0 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li a:visited {
|
||||||
|
color: #8b6fcb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: #333;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #8cc2dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea,
|
||||||
|
input {
|
||||||
|
background-color: #252525;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header><a href="/" class="title">
|
||||||
|
<h2>YortNet</h2>
|
||||||
|
</a>
|
||||||
|
<nav><a href="/">Home</a>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<h1>404</h1>
|
||||||
|
<h2>ʕノ•ᴥ•ʔノ ︵ ┻━┻</h2>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
243
categories/index.html
Normal file
243
categories/index.html
Normal file
|
@ -0,0 +1,243 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Categories | YortNet</title>
|
||||||
|
<meta name="title" content="Categories" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:title" content="Categories" />
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content="/categories/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Categories"/>
|
||||||
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta itemprop="name" content="Categories">
|
||||||
|
<meta itemprop="description" content="">
|
||||||
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="/categories/index.xml" title="YortNet" />
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 720px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3273dc;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-decoration: none;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title span {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
content {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 2px 5px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #222;
|
||||||
|
display: block;
|
||||||
|
padding: 20px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight pre {
|
||||||
|
background-color: initial;
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight code {
|
||||||
|
background-color: unset;
|
||||||
|
color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left: 1px solid #999;
|
||||||
|
color: #222;
|
||||||
|
padding-left: 20px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
padding: 25px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #777;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
color: #eba613;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.blog-posts {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li span {
|
||||||
|
flex: 0 0 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li a:visited {
|
||||||
|
color: #8b6fcb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: #333;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #8cc2dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea,
|
||||||
|
input {
|
||||||
|
background-color: #252525;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header><a href="/" class="title">
|
||||||
|
<h2>YortNet</h2>
|
||||||
|
</a>
|
||||||
|
<nav><a href="/">Home</a>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<content>
|
||||||
|
|
||||||
|
<h3 style="margin-bottom:0">Filtering for "Categories"</h3>
|
||||||
|
<small>
|
||||||
|
<a href="/blog">Remove filter</a>
|
||||||
|
</small>
|
||||||
|
|
||||||
|
<ul class="blog-posts">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
No posts yet
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</content>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
9
categories/index.xml
Normal file
9
categories/index.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Categories on YortNet</title>
|
||||||
|
<link>/categories/</link>
|
||||||
|
<description>Recent content in Categories on YortNet</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator><atom:link href="/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
250
index.html
Normal file
250
index.html
Normal file
|
@ -0,0 +1,250 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta name="generator" content="Hugo 0.111.3">
|
||||||
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Home | YortNet</title>
|
||||||
|
<meta name="title" content="Home" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:title" content="Home" />
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content="/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Home"/>
|
||||||
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta itemprop="name" content="Home">
|
||||||
|
<meta itemprop="description" content="">
|
||||||
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="YortNet" />
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 720px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3273dc;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-decoration: none;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title span {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
content {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 2px 5px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #222;
|
||||||
|
display: block;
|
||||||
|
padding: 20px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight pre {
|
||||||
|
background-color: initial;
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight code {
|
||||||
|
background-color: unset;
|
||||||
|
color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left: 1px solid #999;
|
||||||
|
color: #222;
|
||||||
|
padding-left: 20px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
padding: 25px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #777;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
color: #eba613;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.blog-posts {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li span {
|
||||||
|
flex: 0 0 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li a:visited {
|
||||||
|
color: #8b6fcb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: #333;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #8cc2dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea,
|
||||||
|
input {
|
||||||
|
background-color: #252525;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header><a href="/" class="title">
|
||||||
|
<h2>YortNet</h2>
|
||||||
|
</a>
|
||||||
|
<nav><a href="/">Home</a>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<h2 id="welcome-to-yortnet">Welcome to YortNet</h2>
|
||||||
|
<p>YortNet is created by myself (<a href="https://jordanherzstein.com">Jordan Herzstein</a>) to host various services and privacy frontends at no cost for my own learning as well as the public good.</p>
|
||||||
|
<h3 id="provided-services">Provided Services</h3>
|
||||||
|
<ul>
|
||||||
|
<li>YortNet Minecraft Server: Private Minecraft server (invite only)</li>
|
||||||
|
<li><a href="https://searx.yortnet.com">SearXNG</a>: An open metasearch engine</li>
|
||||||
|
<li><a href="https://mozhi.yortnet.com">Mozhi</a>: Frontend for various translation engines</li>
|
||||||
|
<li><a href="https://bin.yortnet.com">PrivateBin</a>: Pastebin alternative where the server has zero knowledge of pasted data</li>
|
||||||
|
<li><a href="https://gothub.yortnet.com">GotHub</a>: Alternative lightweight GitHub frontend</li>
|
||||||
|
</ul>
|
||||||
|
<p>More to come…</p>
|
||||||
|
<h3 id="policies">Policies</h3>
|
||||||
|
<p>By accessing services provided by yortnet.com you agree to the terms below.</p>
|
||||||
|
<p>These policies are derived in part from <a href="https://tux.pizza/tos/">https://tux.pizza/tos/</a> and <a href="https://bus-hit.me/#tos">https://bus-hit.me/#tos</a>.</p>
|
||||||
|
<h4 id="terms-of-service">Terms of Service</h4>
|
||||||
|
<p>The services are provided as is and is without warranties, neither expressed or implied.</p>
|
||||||
|
<p>In no event will the server operator of yortnet.com be liable to you or any third party for damages or other liability arising out of or in connection with the services provided by yortnet.com.</p>
|
||||||
|
<h4 id="privacy">Privacy</h4>
|
||||||
|
<p>The following is subject to change at any time.</p>
|
||||||
|
<p>I share none of your data with third parties, though by using these services you agree to some anonymized data collection.</p>
|
||||||
|
<p>Your data is accessed by NGINX access logs which contains your IP address with it’s last octet anonymized (e.g. ip address 161.155.211.14 shows as 161.155.211.0 in the logs), a timestamp, site path, and User-Agent, which may contain browser information, operating system, etc. These logs are only kept internally on the linux server hosting these services running the NGINX reverse proxy and is never shared.</p>
|
||||||
|
<p>The server running this site and other services is located in Toronto, Canada, provided by Oracle Corporation. Read their privacy policy <a href="https://www.oracle.com/legal/privacy/services-privacy-policy.html">here</a>.</p>
|
||||||
|
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
9
index.xml
Normal file
9
index.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Home on YortNet</title>
|
||||||
|
<link>/</link>
|
||||||
|
<description>Recent content in Home on YortNet</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
@ -11,21 +11,22 @@
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:title" content="404 Page not found" />
|
<meta property="og:url" content="//localhost:1313/404.html">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:site_name" content="YortNet">
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:title" content="404 Page not found">
|
||||||
<meta property="og:url" content="/404.html" />
|
<meta property="og:locale" content="en">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="404 Page not found"/>
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:title" content="404 Page not found">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="name" content="404 Page not found">
|
|
||||||
<meta itemprop="description" content="">
|
<meta itemprop="name" content="404 Page not found">
|
||||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
@ -11,24 +11,25 @@
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:title" content="Categories" />
|
<meta property="og:url" content="//localhost:1313/categories/">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:site_name" content="YortNet">
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:title" content="Categories">
|
||||||
<meta property="og:url" content="/categories/" />
|
<meta property="og:locale" content="en">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="Categories"/>
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:title" content="Categories">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="name" content="Categories">
|
|
||||||
<meta itemprop="description" content="">
|
<meta itemprop="name" content="Categories">
|
||||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="/categories/index.xml" title="YortNet" />
|
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/categories/index.xml" title="YortNet" />
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Categories on YortNet</title>
|
<title>Categories on YortNet</title>
|
||||||
<link>/categories/</link>
|
<link>//localhost:1313/categories/</link>
|
||||||
<description>Recent content in Categories on YortNet</description>
|
<description>Recent content in Categories on YortNet</description>
|
||||||
<generator>Hugo -- gohugo.io</generator><atom:link href="/categories/index.xml" rel="self" type="application/rss+xml" />
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<atom:link href="//localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta name="generator" content="Hugo 0.111.3">
|
<meta name="generator" content="Hugo 0.126.2"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
@ -12,24 +12,32 @@
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:title" content="Home" />
|
<meta property="og:url" content="//localhost:1313/">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:site_name" content="YortNet">
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:title" content="Home">
|
||||||
<meta property="og:url" content="/" />
|
<meta property="og:description" content="Welcome to YortNet YortNet is created by myself (Jordan Herzstein) to host various services and privacy frontends at no cost for my own learning as well as the public good.
|
||||||
|
Provided Services YortNet Minecraft Server: Private Minecraft server (invite only) SearXNG: An open metasearch engine Mozhi: Frontend for various translation engines PrivateBin: Pastebin alternative where the server has zero knowledge of pasted data GotHub: Alternative lightweight GitHub frontend More to come…">
|
||||||
|
<meta property="og:locale" content="en">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="Home"/>
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:title" content="Home">
|
||||||
|
<meta name="twitter:description" content="Welcome to YortNet YortNet is created by myself (Jordan Herzstein) to host various services and privacy frontends at no cost for my own learning as well as the public good.
|
||||||
|
Provided Services YortNet Minecraft Server: Private Minecraft server (invite only) SearXNG: An open metasearch engine Mozhi: Frontend for various translation engines PrivateBin: Pastebin alternative where the server has zero knowledge of pasted data GotHub: Alternative lightweight GitHub frontend More to come…">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="name" content="Home">
|
|
||||||
<meta itemprop="description" content="">
|
<meta itemprop="name" content="Home">
|
||||||
|
<meta itemprop="description" content="Welcome to YortNet YortNet is created by myself (Jordan Herzstein) to host various services and privacy frontends at no cost for my own learning as well as the public good.
|
||||||
|
Provided Services YortNet Minecraft Server: Private Minecraft server (invite only) SearXNG: An open metasearch engine Mozhi: Frontend for various translation engines PrivateBin: Pastebin alternative where the server has zero knowledge of pasted data GotHub: Alternative lightweight GitHub frontend More to come…">
|
||||||
|
<meta itemprop="wordCount" content="262">
|
||||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="/index.xml" title="YortNet" />
|
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/index.xml" title="YortNet" />
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Home on YortNet</title>
|
<title>Home on YortNet</title>
|
||||||
<link>/</link>
|
<link>//localhost:1313/</link>
|
||||||
<description>Recent content in Home on YortNet</description>
|
<description>Recent content in Home on YortNet</description>
|
||||||
<generator>Hugo -- gohugo.io</generator><atom:link href="/index.xml" rel="self" type="application/rss+xml" />
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<atom:link href="//localhost:1313/index.xml" rel="self" type="application/rss+xml" />
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
<url>
|
<url>
|
||||||
<loc>/categories/</loc>
|
<loc>//localhost:1313/categories/</loc>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>/</loc>
|
<loc>//localhost:1313/</loc>
|
||||||
</url><url>
|
</url><url>
|
||||||
<loc>/tags/</loc>
|
<loc>//localhost:1313/tags/</loc>
|
||||||
</url>
|
</url>
|
||||||
</urlset>
|
</urlset>
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="en-US">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||||
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
@ -11,24 +11,25 @@
|
||||||
<meta name="keywords" content="" />
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
<meta property="og:title" content="Tags" />
|
<meta property="og:url" content="//localhost:1313/tags/">
|
||||||
<meta property="og:description" content="" />
|
<meta property="og:site_name" content="YortNet">
|
||||||
<meta property="og:type" content="website" />
|
<meta property="og:title" content="Tags">
|
||||||
<meta property="og:url" content="/tags/" />
|
<meta property="og:locale" content="en">
|
||||||
|
<meta property="og:type" content="website">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta name="twitter:card" content="summary"/>
|
|
||||||
<meta name="twitter:title" content="Tags"/>
|
<meta name="twitter:card" content="summary">
|
||||||
<meta name="twitter:description" content=""/>
|
<meta name="twitter:title" content="Tags">
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<meta itemprop="name" content="Tags">
|
|
||||||
<meta itemprop="description" content="">
|
<meta itemprop="name" content="Tags">
|
||||||
<meta name="referrer" content="no-referrer-when-downgrade" />
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
<link rel="alternate" type="application/rss+xml" href="/tags/index.xml" title="YortNet" />
|
<link rel="alternate" type="application/rss+xml" href="//localhost:1313/tags/index.xml" title="YortNet" />
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
font-family: Verdana, sans-serif;
|
font-family: Verdana, sans-serif;
|
||||||
|
|
|
@ -2,8 +2,10 @@
|
||||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>Tags on YortNet</title>
|
<title>Tags on YortNet</title>
|
||||||
<link>/tags/</link>
|
<link>//localhost:1313/tags/</link>
|
||||||
<description>Recent content in Tags on YortNet</description>
|
<description>Recent content in Tags on YortNet</description>
|
||||||
<generator>Hugo -- gohugo.io</generator><atom:link href="/tags/index.xml" rel="self" type="application/rss+xml" />
|
<generator>Hugo</generator>
|
||||||
|
<language>en</language>
|
||||||
|
<atom:link href="//localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
11
sitemap.xml
Normal file
11
sitemap.xml
Normal file
|
@ -0,0 +1,11 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
|
||||||
|
xmlns:xhtml="http://www.w3.org/1999/xhtml">
|
||||||
|
<url>
|
||||||
|
<loc>/categories/</loc>
|
||||||
|
</url><url>
|
||||||
|
<loc>/</loc>
|
||||||
|
</url><url>
|
||||||
|
<loc>/tags/</loc>
|
||||||
|
</url>
|
||||||
|
</urlset>
|
243
tags/index.html
Normal file
243
tags/index.html
Normal file
|
@ -0,0 +1,243 @@
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="en-US">
|
||||||
|
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
|
<title>Tags | YortNet</title>
|
||||||
|
<meta name="title" content="Tags" />
|
||||||
|
<meta name="description" content="" />
|
||||||
|
<meta name="keywords" content="" />
|
||||||
|
|
||||||
|
|
||||||
|
<meta property="og:title" content="Tags" />
|
||||||
|
<meta property="og:description" content="" />
|
||||||
|
<meta property="og:type" content="website" />
|
||||||
|
<meta property="og:url" content="/tags/" />
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta name="twitter:card" content="summary"/>
|
||||||
|
<meta name="twitter:title" content="Tags"/>
|
||||||
|
<meta name="twitter:description" content=""/>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
<meta itemprop="name" content="Tags">
|
||||||
|
<meta itemprop="description" content="">
|
||||||
|
<meta name="referrer" content="no-referrer-when-downgrade" />
|
||||||
|
|
||||||
|
<link rel="alternate" type="application/rss+xml" href="/tags/index.xml" title="YortNet" />
|
||||||
|
<style>
|
||||||
|
body {
|
||||||
|
font-family: Verdana, sans-serif;
|
||||||
|
margin: auto;
|
||||||
|
padding: 20px;
|
||||||
|
max-width: 720px;
|
||||||
|
text-align: left;
|
||||||
|
background-color: #fff;
|
||||||
|
word-wrap: break-word;
|
||||||
|
overflow-wrap: break-word;
|
||||||
|
line-height: 1.5;
|
||||||
|
color: #444;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #222;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #3273dc;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.title {
|
||||||
|
text-decoration: none;
|
||||||
|
border: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.title span {
|
||||||
|
font-weight: 400;
|
||||||
|
}
|
||||||
|
|
||||||
|
nav a {
|
||||||
|
margin-right: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea {
|
||||||
|
width: 100%;
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
font-size: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
content {
|
||||||
|
line-height: 1.6;
|
||||||
|
}
|
||||||
|
|
||||||
|
table {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
img {
|
||||||
|
max-width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
padding: 2px 5px;
|
||||||
|
background-color: #f2f2f2;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #222;
|
||||||
|
display: block;
|
||||||
|
padding: 20px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
font-size: 14px;
|
||||||
|
overflow-x: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight pre {
|
||||||
|
background-color: initial;
|
||||||
|
color: initial;
|
||||||
|
}
|
||||||
|
|
||||||
|
div.highlight code {
|
||||||
|
background-color: unset;
|
||||||
|
color: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
border-left: 1px solid #999;
|
||||||
|
color: #222;
|
||||||
|
padding-left: 20px;
|
||||||
|
font-style: italic;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
padding: 25px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #777;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
.errorlist {
|
||||||
|
color: #eba613;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
ul.blog-posts {
|
||||||
|
list-style-type: none;
|
||||||
|
padding: unset;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li {
|
||||||
|
display: flex;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li span {
|
||||||
|
flex: 0 0 130px;
|
||||||
|
}
|
||||||
|
|
||||||
|
ul.blog-posts li a:visited {
|
||||||
|
color: #8b6fcb;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (prefers-color-scheme: dark) {
|
||||||
|
body {
|
||||||
|
background-color: #333;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
h1,
|
||||||
|
h2,
|
||||||
|
h3,
|
||||||
|
h4,
|
||||||
|
h5,
|
||||||
|
h6,
|
||||||
|
strong,
|
||||||
|
b {
|
||||||
|
color: #eee;
|
||||||
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #8cc2dd;
|
||||||
|
}
|
||||||
|
|
||||||
|
code {
|
||||||
|
background-color: #777;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code {
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
blockquote {
|
||||||
|
color: #ccc;
|
||||||
|
}
|
||||||
|
|
||||||
|
textarea,
|
||||||
|
input {
|
||||||
|
background-color: #252525;
|
||||||
|
color: #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
|
.helptext {
|
||||||
|
color: #aaa;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</head>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<header><a href="/" class="title">
|
||||||
|
<h2>YortNet</h2>
|
||||||
|
</a>
|
||||||
|
<nav><a href="/">Home</a>
|
||||||
|
|
||||||
|
|
||||||
|
</nav>
|
||||||
|
</header>
|
||||||
|
<main>
|
||||||
|
<content>
|
||||||
|
|
||||||
|
<h3 style="margin-bottom:0">Filtering for "Tags"</h3>
|
||||||
|
<small>
|
||||||
|
<a href="/blog">Remove filter</a>
|
||||||
|
</small>
|
||||||
|
|
||||||
|
<ul class="blog-posts">
|
||||||
|
|
||||||
|
<li>
|
||||||
|
No posts yet
|
||||||
|
</li>
|
||||||
|
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
|
||||||
|
</content>
|
||||||
|
|
||||||
|
</main>
|
||||||
|
<footer>Made with <a href="https://github.com/janraasch/hugo-bearblog/">Hugo ʕ•ᴥ•ʔ Bear</a>
|
||||||
|
</footer>
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
9
tags/index.xml
Normal file
9
tags/index.xml
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||||
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
|
<channel>
|
||||||
|
<title>Tags on YortNet</title>
|
||||||
|
<link>/tags/</link>
|
||||||
|
<description>Recent content in Tags on YortNet</description>
|
||||||
|
<generator>Hugo -- gohugo.io</generator><atom:link href="/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||||
|
</channel>
|
||||||
|
</rss>
|
Loading…
Reference in a new issue