new page
This commit is contained in:
parent
7f3cae0a0d
commit
d80988cd03
9 changed files with 1006 additions and 1 deletions
|
@ -16,7 +16,11 @@ jobs:
|
|||
fetch-depth: 0
|
||||
- name: public branch
|
||||
run: |
|
||||
git checkout pages
|
||||
git checkout --orphan pages
|
||||
git rm -rf .
|
||||
git checkout main -- public
|
||||
mv public/* .
|
||||
git rm -r public/
|
||||
git add .
|
||||
git commit -m "deploying page"
|
||||
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>
|
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