mirror of
https://github.com/agresdominik/website.git
synced 2026-04-21 18:05:53 +00:00
public folder
This commit is contained in:
@@ -1,56 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<link rel="preconnect" href="https://rsms.me/">
|
||||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<meta charset="UTF-8">
|
||||
<title> agres :: Categories </title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="topbar">
|
||||
<div class="topbar-content">
|
||||
<em>
|
||||
<a href="/" class="site-title">
|
||||
agres.online
|
||||
</a>
|
||||
</em>
|
||||
<nav class="nav-links">
|
||||
<a href="/blog/">~/blog</a>
|
||||
<a href="/whoami/">~/whoami</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
|
||||
<h1>Categories</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer class="bottombar">
|
||||
<div class="bottombar-content">
|
||||
<nav class="footer-links">
|
||||
<a href="/impressum/">Impressum</a> ·
|
||||
<a href="/datenschutz/">Datenschutz</a> ·
|
||||
<a href="mailto:dominik@agres.online">Email</a>
|
||||
<a href="/publickey.asc">PGP-Key</a>
|
||||
</nav>
|
||||
<div class="copyright">© 2025 Dominik Agreš</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
<!doctype html><html lang=en><head><link rel=preconnect href=https://rsms.me/><link rel=stylesheet href=https://rsms.me/inter/inter.css><link rel=stylesheet href=/css/style.css><meta charset=UTF-8><title>agres :: Categories</title></head><body><header class=topbar><div class=topbar-content><em><a href=/ class=site-title>agres.online</a></em><nav class=nav-links><a href=/blog/>~/blog</a>
|
||||
<a href=/whoami/>~/whoami</a></nav></div></header><main><h1>Categories</h1><ul></ul></main><footer class=bottombar><div class=bottombar-content><nav class=footer-links><a href=/impressum/>Impressum</a> ·
|
||||
<a href=/datenschutz/>Datenschutz</a> ·
|
||||
<a href=mailto:dominik@agres.online>Email</a>
|
||||
<a href=/publickey.asc>PGP-Key</a></nav><div class=copyright>© 2025 Dominik Agreš</div></div></footer></body></html>
|
||||
@@ -1,11 +1 @@
|
||||
<?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 agres.online</title>
|
||||
<link>http://localhost:1313/de/categories/</link>
|
||||
<description>Recent content in Categories on agres.online</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>de-DE</language>
|
||||
<atom:link href="http://localhost:1313/de/categories/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
<?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 agres.online</title><link>https://agres.online/de/categories/</link><description>Recent content in Categories on agres.online</description><generator>Hugo</generator><language>de-DE</language><atom:link href="https://agres.online/de/categories/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
||||
@@ -1,95 +1,8 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head>
|
||||
<meta name="generator" content="Hugo 0.152.2"><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<link rel="preconnect" href="https://rsms.me/">
|
||||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<meta charset="UTF-8">
|
||||
<title> agres :: agres.online </title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="topbar">
|
||||
<div class="topbar-content">
|
||||
<em>
|
||||
<a href="/" class="site-title">
|
||||
agres.online
|
||||
</a>
|
||||
</em>
|
||||
<nav class="nav-links">
|
||||
<a href="/blog/">~/blog</a>
|
||||
<a href="/whoami/">~/whoami</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
|
||||
<style>
|
||||
#typedText::after {
|
||||
content: "|";
|
||||
animation: blink 0.7s infinite;
|
||||
}
|
||||
@keyframes blink {
|
||||
50% { opacity: 0; }
|
||||
}
|
||||
</style>
|
||||
|
||||
<script>
|
||||
document.addEventListener("DOMContentLoaded", function () {
|
||||
const text = "Welcome";
|
||||
const element = document.getElementById("typedText");
|
||||
let index = 0;
|
||||
|
||||
function type() {
|
||||
if (index < text.length) {
|
||||
element.textContent += text.charAt(index);
|
||||
index++;
|
||||
setTimeout(type, 120);
|
||||
}
|
||||
}
|
||||
|
||||
type();
|
||||
});
|
||||
</script>
|
||||
|
||||
|
||||
<div class="landing-welcome">
|
||||
<h1 id="typedText"></h1>
|
||||
<div class="landing-links">
|
||||
|
||||
<a href="https://github.com/agresdominik" target="_blank">github</a>
|
||||
|
||||
<a href="https://linkedin.com/in/dominik-agres" target="_blank">linkedin</a>
|
||||
|
||||
<a href="mailto:dominik@agres.online" target="_blank">email</a>
|
||||
|
||||
<a href="/publickey.asc" target="_blank">pgp</a>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer class="bottombar">
|
||||
<div class="bottombar-content">
|
||||
<nav class="footer-links">
|
||||
<a href="/impressum/">Impressum</a> ·
|
||||
<a href="/datenschutz/">Datenschutz</a> ·
|
||||
<a href="mailto:dominik@agres.online">Email</a>
|
||||
<a href="/publickey.asc">PGP-Key</a>
|
||||
</nav>
|
||||
<div class="copyright">© 2025 Dominik Agreš</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
<!doctype html><html lang=en><head><meta name=generator content="Hugo 0.152.2"><link rel=preconnect href=https://rsms.me/><link rel=stylesheet href=https://rsms.me/inter/inter.css><link rel=stylesheet href=/css/style.css><meta charset=UTF-8><title>agres :: agres.online</title></head><body><header class=topbar><div class=topbar-content><em><a href=/ class=site-title>agres.online</a></em><nav class=nav-links><a href=/blog/>~/blog</a>
|
||||
<a href=/whoami/>~/whoami</a></nav></div></header><main><style>#typedText::after{content:"|";animation:blink .7s infinite}@keyframes blink{50%{opacity:0}}</style><script>document.addEventListener("DOMContentLoaded",function(){const t="Welcome",s=document.getElementById("typedText");let e=0;function n(){e<t.length&&(s.textContent+=t.charAt(e),e++,setTimeout(n,120))}n()})</script><div class=landing-welcome><h1 id=typedText></h1><div class=landing-links><a href=https://github.com/agresdominik target=_blank>github</a>
|
||||
<a href=https://linkedin.com/in/dominik-agres target=_blank>linkedin</a>
|
||||
<a href=mailto:dominik@agres.online target=_blank>email</a>
|
||||
<a href=/publickey.asc target=_blank>pgp</a></div></div></main><footer class=bottombar><div class=bottombar-content><nav class=footer-links><a href=/impressum/>Impressum</a> ·
|
||||
<a href=/datenschutz/>Datenschutz</a> ·
|
||||
<a href=mailto:dominik@agres.online>Email</a>
|
||||
<a href=/publickey.asc>PGP-Key</a></nav><div class=copyright>© 2025 Dominik Agreš</div></div></footer></body></html>
|
||||
@@ -1,11 +1 @@
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?>
|
||||
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||
<channel>
|
||||
<title>agres.online</title>
|
||||
<link>http://localhost:1313/de/</link>
|
||||
<description>Recent content on agres.online</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>de-DE</language>
|
||||
<atom:link href="http://localhost:1313/de/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>agres.online</title><link>https://agres.online/de/</link><description>Recent content on agres.online</description><generator>Hugo</generator><language>de-DE</language><atom:link href="https://agres.online/de/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
||||
@@ -1,41 +1 @@
|
||||
<?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>http://localhost:1313/de/</loc>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="en-US"
|
||||
href="http://localhost:1313/"
|
||||
/>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="de-DE"
|
||||
href="http://localhost:1313/de/"
|
||||
/>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/de/categories/</loc>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="en-US"
|
||||
href="http://localhost:1313/categories/"
|
||||
/>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="de-DE"
|
||||
href="http://localhost:1313/de/categories/"
|
||||
/>
|
||||
</url><url>
|
||||
<loc>http://localhost:1313/de/tags/</loc>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="en-US"
|
||||
href="http://localhost:1313/tags/"
|
||||
/>
|
||||
<xhtml:link
|
||||
rel="alternate"
|
||||
hreflang="de-DE"
|
||||
href="http://localhost:1313/de/tags/"
|
||||
/>
|
||||
</url>
|
||||
</urlset>
|
||||
<?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>https://agres.online/de/</loc><xhtml:link rel="alternate" hreflang="en-US" href="https://agres.online/"/><xhtml:link rel="alternate" hreflang="de-DE" href="https://agres.online/de/"/></url><url><loc>https://agres.online/de/categories/</loc><xhtml:link rel="alternate" hreflang="en-US" href="https://agres.online/categories/"/><xhtml:link rel="alternate" hreflang="de-DE" href="https://agres.online/de/categories/"/></url><url><loc>https://agres.online/de/tags/</loc><xhtml:link rel="alternate" hreflang="en-US" href="https://agres.online/tags/"/><xhtml:link rel="alternate" hreflang="de-DE" href="https://agres.online/de/tags/"/></url></urlset>
|
||||
@@ -1,56 +1,5 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
|
||||
<head><script src="/livereload.js?mindelay=10&v=2&port=1313&path=livereload" data-no-instant defer></script>
|
||||
<link rel="preconnect" href="https://rsms.me/">
|
||||
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<meta charset="UTF-8">
|
||||
<title> agres :: Tags </title>
|
||||
</head>
|
||||
|
||||
<body>
|
||||
|
||||
<header class="topbar">
|
||||
<div class="topbar-content">
|
||||
<em>
|
||||
<a href="/" class="site-title">
|
||||
agres.online
|
||||
</a>
|
||||
</em>
|
||||
<nav class="nav-links">
|
||||
<a href="/blog/">~/blog</a>
|
||||
<a href="/whoami/">~/whoami</a>
|
||||
</nav>
|
||||
</div>
|
||||
</header>
|
||||
|
||||
|
||||
<main>
|
||||
|
||||
|
||||
<h1>Tags</h1>
|
||||
|
||||
<ul>
|
||||
|
||||
</ul>
|
||||
|
||||
|
||||
</main>
|
||||
|
||||
<footer class="bottombar">
|
||||
<div class="bottombar-content">
|
||||
<nav class="footer-links">
|
||||
<a href="/impressum/">Impressum</a> ·
|
||||
<a href="/datenschutz/">Datenschutz</a> ·
|
||||
<a href="mailto:dominik@agres.online">Email</a>
|
||||
<a href="/publickey.asc">PGP-Key</a>
|
||||
</nav>
|
||||
<div class="copyright">© 2025 Dominik Agreš</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
||||
<!doctype html><html lang=en><head><link rel=preconnect href=https://rsms.me/><link rel=stylesheet href=https://rsms.me/inter/inter.css><link rel=stylesheet href=/css/style.css><meta charset=UTF-8><title>agres :: Tags</title></head><body><header class=topbar><div class=topbar-content><em><a href=/ class=site-title>agres.online</a></em><nav class=nav-links><a href=/blog/>~/blog</a>
|
||||
<a href=/whoami/>~/whoami</a></nav></div></header><main><h1>Tags</h1><ul></ul></main><footer class=bottombar><div class=bottombar-content><nav class=footer-links><a href=/impressum/>Impressum</a> ·
|
||||
<a href=/datenschutz/>Datenschutz</a> ·
|
||||
<a href=mailto:dominik@agres.online>Email</a>
|
||||
<a href=/publickey.asc>PGP-Key</a></nav><div class=copyright>© 2025 Dominik Agreš</div></div></footer></body></html>
|
||||
@@ -1,11 +1 @@
|
||||
<?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 agres.online</title>
|
||||
<link>http://localhost:1313/de/tags/</link>
|
||||
<description>Recent content in Tags on agres.online</description>
|
||||
<generator>Hugo</generator>
|
||||
<language>de-DE</language>
|
||||
<atom:link href="http://localhost:1313/de/tags/index.xml" rel="self" type="application/rss+xml" />
|
||||
</channel>
|
||||
</rss>
|
||||
<?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 agres.online</title><link>https://agres.online/de/tags/</link><description>Recent content in Tags on agres.online</description><generator>Hugo</generator><language>de-DE</language><atom:link href="https://agres.online/de/tags/index.xml" rel="self" type="application/rss+xml"/></channel></rss>
|
||||
Reference in New Issue
Block a user