Added music button

This commit is contained in:
spetznas
2026-05-04 19:13:52 +02:00
parent eccb229f03
commit 9bd514dac0
83 changed files with 704 additions and 13276 deletions
+1
View File
@@ -78,6 +78,7 @@
</style> </style>
<div class="wedding-container"> <div class="wedding-container">
{{ partial "audio.html" . }}
<!-- Countdown Timer --> <!-- Countdown Timer -->
<div class="countdown"> <div class="countdown">
+56
View File
@@ -0,0 +1,56 @@
<style>
.music-fab {
position: fixed;
bottom: 20px;
left: 20px; /* 👈 change here */
z-index: 9999;
}
.fab-button {
width: 52px;
height: 52px;
border-radius: 50%;
border: none;
background: white;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
font-size: 20px;
cursor: pointer;
transition: transform 0.15s ease;
}
.fab-button:active {
transform: scale(0.95);
}
</style>
<div class="music-fab">
<button id="music-btn" class="fab-button">▶️</button>
</div>
<audio id="bg-music" loop>
<source src="/audio/canon-in-d.mp3" type="audio/mpeg">
</audio>
<script>
const btn = document.getElementById("music-btn");
const audio = document.getElementById("bg-music");
audio.volume = 0.2;
let isPlaying = false;
btn.addEventListener("click", async () => {
if (!isPlaying) {
try {
await audio.play();
isPlaying = true;
btn.textContent = "⏸️"; // pause icon
} catch (e) {
console.log("Playback blocked:", e);
}
} else {
audio.pause();
isPlaying = false;
btn.textContent = "▶️";
}
});
</script>
Executable → Regular
+10 -10
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="404 Page not found"> <meta name="twitter:title" content="404 Page not found">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/404.html"> <meta property="og:url" content="http://markinstefan.xyz/404.html">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="404 Page not found"> <meta property="og:title" content="404 Page not found">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/404.html"> <link rel="canonical" href="http://markinstefan.xyz/404.html">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -136,14 +136,14 @@
<li class="navigation-item"> <li class="navigation-item">
<a href="/de/404.html">🇩🇪</a> <a href="/ru/404.html">🇷🇺</a>
</li> </li>
<li class="navigation-item"> <li class="navigation-item">
<a href="/ru/404.html">🇷🇺</a> <a href="/de/404.html">🇩🇪</a>
</li> </li>
@@ -160,7 +160,7 @@
<div class="error"> <div class="error">
<h1>404</h1> <h1>404</h1>
<h2>Page Not Found</h2> <h2>Page Not Found</h2>
<p>Sorry, this page does not exist.<br />You can head back to the <a href="http://localhost:1313/">homepage</a>.</p> <p>Sorry, this page does not exist.<br />You can head back to the <a href="http://markinstefan.xyz/">homepage</a>.</p>
</div> </div>
</section> </section>
@@ -186,7 +186,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Redirecting to Gitea Profile"> <meta name="twitter:title" content="Redirecting to Gitea Profile">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/about/"> <meta property="og:url" content="http://markinstefan.xyz/about/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Redirecting to Gitea Profile"> <meta property="og:title" content="Redirecting to Gitea Profile">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/about/"> <link rel="canonical" href="http://markinstefan.xyz/about/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Binary file not shown.
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Authors · Markin Stefan</title> <title>Authors · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Authors"> <meta name="twitter:title" content="Authors">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/authors/"> <meta property="og:url" content="http://markinstefan.xyz/authors/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Authors"> <meta property="og:title" content="Authors">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/authors/"> <link rel="canonical" href="http://markinstefan.xyz/authors/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/authors/">Authors</a> <a class="title-link" href="http://markinstefan.xyz/authors/">Authors</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Authors on Markin Stefan</title> <title>Authors on Markin Stefan</title>
<link>http://localhost:1313/authors/</link> <link>http://markinstefan.xyz/authors/</link>
<description>Recent content in Authors on Markin Stefan</description> <description>Recent content in Authors on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>en</language> <language>en</language>
<atom:link href="http://localhost:1313/authors/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/authors/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/authors/</title> <title>http://markinstefan.xyz/authors/</title>
<link rel="canonical" href="http://localhost:1313/authors/"> <link rel="canonical" href="http://markinstefan.xyz/authors/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/authors/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/authors/">
</head> </head>
</html> </html>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Categories · Markin Stefan</title> <title>Categories · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Categories"> <meta name="twitter:title" content="Categories">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/categories/"> <meta property="og:url" content="http://markinstefan.xyz/categories/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Categories"> <meta property="og:title" content="Categories">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/categories/"> <link rel="canonical" href="http://markinstefan.xyz/categories/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/categories/">Categories</a> <a class="title-link" href="http://markinstefan.xyz/categories/">Categories</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Markin Stefan</title> <title>Categories on Markin Stefan</title>
<link>http://localhost:1313/categories/</link> <link>http://markinstefan.xyz/categories/</link>
<description>Recent content in Categories on Markin Stefan</description> <description>Recent content in Categories on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>en</language> <language>en</language>
<atom:link href="http://localhost:1313/categories/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/categories/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/categories/</title> <title>http://markinstefan.xyz/categories/</title>
<link rel="canonical" href="http://localhost:1313/categories/"> <link rel="canonical" href="http://markinstefan.xyz/categories/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/categories/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/categories/">
</head> </head>
</html> </html>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title> <title>
Contact · Markin Stefan Contact · Markin Stefan
</title> </title>
@@ -31,7 +31,7 @@ Write to me using one of the three recommendations mentioned.">
SMS Directly calling Signal I do not use WhatsApp or Telegram for personal conversations. SMS Directly calling Signal I do not use WhatsApp or Telegram for personal conversations.
Write to me using one of the three recommendations mentioned."> Write to me using one of the three recommendations mentioned.">
<meta property="og:url" content="http://localhost:1313/contact/"> <meta property="og:url" content="http://markinstefan.xyz/contact/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Contact"> <meta property="og:title" content="Contact">
<meta property="og:description" content="If you have my phone number, only through: <meta property="og:description" content="If you have my phone number, only through:
@@ -43,7 +43,7 @@ Write to me using one of the three recommendations mentioned.">
<link rel="canonical" href="http://localhost:1313/contact/"> <link rel="canonical" href="http://markinstefan.xyz/contact/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -53,7 +53,7 @@ Write to me using one of the three recommendations mentioned.">
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -63,7 +63,7 @@ Write to me using one of the three recommendations mentioned.">
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -112,7 +112,7 @@ Write to me using one of the three recommendations mentioned.">
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -173,7 +173,7 @@ Write to me using one of the three recommendations mentioned.">
<article> <article>
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/contact/"> <a class="title-link" href="http://markinstefan.xyz/contact/">
Contact Contact
</a> </a>
</h1> </h1>
@@ -214,7 +214,7 @@ Write to me using one of the three recommendations mentioned.</p>
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
-835
View File
@@ -1,835 +0,0 @@
body.colorscheme-dark {
color: #dadada;
background-color: #212121; }
body.colorscheme-dark a {
color: #42a5f5; }
body.colorscheme-dark h1,
body.colorscheme-dark h2,
body.colorscheme-dark h3,
body.colorscheme-dark h4,
body.colorscheme-dark h5,
body.colorscheme-dark h6 {
color: #dadada; }
body.colorscheme-dark h1:hover .heading-link,
body.colorscheme-dark h2:hover .heading-link,
body.colorscheme-dark h3:hover .heading-link,
body.colorscheme-dark h4:hover .heading-link,
body.colorscheme-dark h5:hover .heading-link,
body.colorscheme-dark h6:hover .heading-link {
visibility: visible; }
body.colorscheme-dark h1 .heading-link,
body.colorscheme-dark h2 .heading-link,
body.colorscheme-dark h3 .heading-link,
body.colorscheme-dark h4 .heading-link,
body.colorscheme-dark h5 .heading-link,
body.colorscheme-dark h6 .heading-link {
color: #42a5f5;
font-weight: inherit;
text-decoration: none;
font-size: 80%;
visibility: hidden; }
body.colorscheme-dark h1 .title-link,
body.colorscheme-dark h2 .title-link,
body.colorscheme-dark h3 .title-link,
body.colorscheme-dark h4 .title-link,
body.colorscheme-dark h5 .title-link,
body.colorscheme-dark h6 .title-link {
color: inherit;
font-weight: inherit;
text-decoration: none; }
body.colorscheme-dark pre code {
background-color: inherit;
color: inherit; }
body.colorscheme-dark code {
background-color: #4f4f4f;
color: #dadada; }
body.colorscheme-dark blockquote {
border-left: 2px solid #424242; }
body.colorscheme-dark th,
body.colorscheme-dark td {
padding: 1.6rem; }
body.colorscheme-dark table {
border-collapse: collapse; }
body.colorscheme-dark table td,
body.colorscheme-dark table th {
border: 2px solid #dadada; }
body.colorscheme-dark table tr:first-child th {
border-top: 0; }
body.colorscheme-dark table tr:last-child td {
border-bottom: 0; }
body.colorscheme-dark table tr td:first-child,
body.colorscheme-dark table tr th:first-child {
border-left: 0; }
body.colorscheme-dark table tr td:last-child,
body.colorscheme-dark table tr th:last-child {
border-right: 0; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto {
color: #dadada;
background-color: #212121; }
body.colorscheme-auto a {
color: #42a5f5; }
body.colorscheme-auto h1,
body.colorscheme-auto h2,
body.colorscheme-auto h3,
body.colorscheme-auto h4,
body.colorscheme-auto h5,
body.colorscheme-auto h6 {
color: #dadada; }
body.colorscheme-auto h1:hover .heading-link,
body.colorscheme-auto h2:hover .heading-link,
body.colorscheme-auto h3:hover .heading-link,
body.colorscheme-auto h4:hover .heading-link,
body.colorscheme-auto h5:hover .heading-link,
body.colorscheme-auto h6:hover .heading-link {
visibility: visible; }
body.colorscheme-auto h1 .heading-link,
body.colorscheme-auto h2 .heading-link,
body.colorscheme-auto h3 .heading-link,
body.colorscheme-auto h4 .heading-link,
body.colorscheme-auto h5 .heading-link,
body.colorscheme-auto h6 .heading-link {
color: #42a5f5;
font-weight: inherit;
text-decoration: none;
font-size: 80%;
visibility: hidden; }
body.colorscheme-auto h1 .title-link,
body.colorscheme-auto h2 .title-link,
body.colorscheme-auto h3 .title-link,
body.colorscheme-auto h4 .title-link,
body.colorscheme-auto h5 .title-link,
body.colorscheme-auto h6 .title-link {
color: inherit;
font-weight: inherit;
text-decoration: none; }
body.colorscheme-auto pre code {
background-color: inherit;
color: inherit; }
body.colorscheme-auto code {
background-color: #4f4f4f;
color: #dadada; }
body.colorscheme-auto blockquote {
border-left: 2px solid #424242; }
body.colorscheme-auto th,
body.colorscheme-auto td {
padding: 1.6rem; }
body.colorscheme-auto table {
border-collapse: collapse; }
body.colorscheme-auto table td,
body.colorscheme-auto table th {
border: 2px solid #dadada; }
body.colorscheme-auto table tr:first-child th {
border-top: 0; }
body.colorscheme-auto table tr:last-child td {
border-bottom: 0; }
body.colorscheme-auto table tr td:first-child,
body.colorscheme-auto table tr th:first-child {
border-left: 0; }
body.colorscheme-auto table tr td:last-child,
body.colorscheme-auto table tr th:last-child {
border-right: 0; } }
body.colorscheme-dark .content .post .tags .tag {
background-color: #424242; }
body.colorscheme-dark .content .post .tags .tag a {
color: #dadada; }
body.colorscheme-dark .content .post .tags .tag a:active {
color: #dadada; }
body.colorscheme-dark .content .list ul li .title {
color: #dadada; }
body.colorscheme-dark .content .list ul li .title:hover, body.colorscheme-dark .content .list ul li .title:focus {
color: #42a5f5; }
body.colorscheme-dark .content .centered .about ul li a {
color: #dadada; }
body.colorscheme-dark .content .centered .about ul li a:hover, body.colorscheme-dark .content .centered .about ul li a:focus {
color: #42a5f5; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .content .post .tags .tag {
background-color: #424242; }
body.colorscheme-auto .content .post .tags .tag a {
color: #dadada; }
body.colorscheme-auto .content .post .tags .tag a:active {
color: #dadada; }
body.colorscheme-auto .content .list ul li .title {
color: #dadada; }
body.colorscheme-auto .content .list ul li .title:hover, body.colorscheme-auto .content .list ul li .title:focus {
color: #42a5f5; }
body.colorscheme-auto .content .centered .about ul li a {
color: #dadada; }
body.colorscheme-auto .content .centered .about ul li a:hover, body.colorscheme-auto .content .centered .about ul li a:focus {
color: #42a5f5; } }
body.colorscheme-dark .notice .notice-title {
border-bottom: 1px solid #212121; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .notice .notice-title {
border-bottom: 1px solid #212121; } }
body.colorscheme-dark .navigation a,
body.colorscheme-dark .navigation span {
color: #dadada; }
body.colorscheme-dark .navigation a:hover, body.colorscheme-dark .navigation a:focus {
color: #42a5f5; }
@media only screen and (max-width: 768px) {
body.colorscheme-dark .navigation .navigation-list {
background-color: #212121;
border-top: solid 2px #424242;
border-bottom: solid 2px #424242; } }
@media only screen and (max-width: 768px) {
body.colorscheme-dark .navigation .navigation-list .menu-separator {
border-top: 2px solid #dadada; } }
@media only screen and (max-width: 768px) {
body.colorscheme-dark .navigation #menu-toggle:checked + label > i {
color: #424242; } }
body.colorscheme-dark .navigation i {
color: #dadada; }
body.colorscheme-dark .navigation i:hover, body.colorscheme-dark .navigation i:focus {
color: #42a5f5; }
body.colorscheme-dark .navigation .menu-button i:hover, body.colorscheme-dark .navigation .menu-button i:focus {
color: #dadada; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .navigation a,
body.colorscheme-auto .navigation span {
color: #dadada; }
body.colorscheme-auto .navigation a:hover, body.colorscheme-auto .navigation a:focus {
color: #42a5f5; } }
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
body.colorscheme-auto .navigation .navigation-list {
background-color: #212121;
border-top: solid 2px #424242;
border-bottom: solid 2px #424242; } }
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
body.colorscheme-auto .navigation .navigation-list .menu-separator {
border-top: 2px solid #dadada; } }
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
body.colorscheme-auto .navigation #menu-toggle:checked + label > i {
color: #424242; } }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .navigation i {
color: #dadada; }
body.colorscheme-auto .navigation i:hover, body.colorscheme-auto .navigation i:focus {
color: #42a5f5; }
body.colorscheme-auto .navigation .menu-button i:hover, body.colorscheme-auto .navigation .menu-button i:focus {
color: #dadada; } }
body.colorscheme-dark .tabs label.tab-label {
background-color: #424242;
border-color: #4f4f4f; }
body.colorscheme-dark .tabs input.tab-input:checked + label.tab-label {
background-color: #212121; }
body.colorscheme-dark .tabs .tab-content {
background-color: #212121;
border-color: #4f4f4f; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .tabs label.tab-label {
background-color: #424242;
border-color: #4f4f4f; }
body.colorscheme-auto .tabs input.tab-input:checked + label.tab-label {
background-color: #212121; }
body.colorscheme-auto .tabs .tab-content {
background-color: #212121;
border-color: #4f4f4f; } }
body.colorscheme-dark .taxonomy-element {
background-color: #424242; }
body.colorscheme-dark .taxonomy-element a {
color: #dadada; }
body.colorscheme-dark .taxonomy-element a:active {
color: #dadada; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .taxonomy-element {
background-color: #424242; }
body.colorscheme-auto .taxonomy-element a {
color: #dadada; }
body.colorscheme-auto .taxonomy-element a:active {
color: #dadada; } }
body.colorscheme-dark .footer a {
color: #42a5f5; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .footer a {
color: #42a5f5; } }
body.colorscheme-dark .float-container a {
color: #dadada;
background-color: #424242; }
body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
color: #42a5f5; }
@media only screen and (max-width: 768px) {
body.colorscheme-dark .float-container a:hover, body.colorscheme-dark .float-container a:focus {
color: #dadada; } }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto .float-container a {
color: #dadada;
background-color: #424242; }
body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
color: #42a5f5; } }
@media only screen and (prefers-color-scheme: dark) and (max-width: 768px) {
body.colorscheme-auto .float-container a:hover, body.colorscheme-auto .float-container a:focus {
color: #dadada; } }
body.colorscheme-dark {
/* Background */
/* PreWrapper */
/* Other */
/* Error */
/* CodeLine */
/* LineLink */
/* LineTableTD */
/* LineTable */
/* LineHighlight */
/* LineNumbersTable */
/* LineNumbers */
/* Line */
/* Keyword */
/* KeywordConstant */
/* KeywordDeclaration */
/* KeywordNamespace */
/* KeywordPseudo */
/* KeywordReserved */
/* KeywordType */
/* Name */
/* NameAttribute */
/* NameBuiltin */
/* NameBuiltinPseudo */
/* NameClass */
/* NameConstant */
/* NameDecorator */
/* NameEntity */
/* NameException */
/* NameFunction */
/* NameFunctionMagic */
/* NameLabel */
/* NameNamespace */
/* NameOther */
/* NameProperty */
/* NameTag */
/* NameVariable */
/* NameVariableClass */
/* NameVariableGlobal */
/* NameVariableInstance */
/* NameVariableMagic */
/* Literal */
/* LiteralDate */
/* LiteralString */
/* LiteralStringAffix */
/* LiteralStringBacktick */
/* LiteralStringChar */
/* LiteralStringDelimiter */
/* LiteralStringDoc */
/* LiteralStringDouble */
/* LiteralStringEscape */
/* LiteralStringHeredoc */
/* LiteralStringInterpol */
/* LiteralStringOther */
/* LiteralStringRegex */
/* LiteralStringSingle */
/* LiteralStringSymbol */
/* LiteralNumber */
/* LiteralNumberBin */
/* LiteralNumberFloat */
/* LiteralNumberHex */
/* LiteralNumberInteger */
/* LiteralNumberIntegerLong */
/* LiteralNumberOct */
/* Operator */
/* OperatorWord */
/* Punctuation */
/* Comment */
/* CommentHashbang */
/* CommentMultiline */
/* CommentSingle */
/* CommentSpecial */
/* CommentPreproc */
/* CommentPreprocFile */
/* Generic */
/* GenericDeleted */
/* GenericEmph */
/* GenericError */
/* GenericHeading */
/* GenericInserted */
/* GenericOutput */
/* GenericPrompt */
/* GenericStrong */
/* GenericSubheading */
/* GenericTraceback */
/* GenericUnderline */
/* TextWhitespace */ }
body.colorscheme-dark .bg {
color: #c9d1d9;
background-color: #0d1117; }
body.colorscheme-dark .chroma {
color: #c9d1d9;
background-color: #0d1117; }
body.colorscheme-dark .chroma .err {
color: #f85149; }
body.colorscheme-dark .chroma .lnlinks {
outline: none;
text-decoration: none;
color: inherit; }
body.colorscheme-dark .chroma .lntd {
vertical-align: top;
padding: 0;
margin: 0;
border: 0; }
body.colorscheme-dark .chroma .lntable {
border-spacing: 0;
padding: 0;
margin: 0;
border: 0; }
body.colorscheme-dark .chroma .hl {
background-color: #ffffcc; }
body.colorscheme-dark .chroma .lnt {
white-space: pre;
user-select: none;
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #64686c; }
body.colorscheme-dark .chroma .ln {
white-space: pre;
user-select: none;
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #6e7681; }
body.colorscheme-dark .chroma .line {
display: flex; }
body.colorscheme-dark .chroma .k {
color: #ff7b72; }
body.colorscheme-dark .chroma .kc {
color: #79c0ff; }
body.colorscheme-dark .chroma .kd {
color: #ff7b72; }
body.colorscheme-dark .chroma .kn {
color: #ff7b72; }
body.colorscheme-dark .chroma .kp {
color: #79c0ff; }
body.colorscheme-dark .chroma .kr {
color: #ff7b72; }
body.colorscheme-dark .chroma .kt {
color: #ff7b72; }
body.colorscheme-dark .chroma .nc {
color: #f0883e;
font-weight: bold; }
body.colorscheme-dark .chroma .no {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-dark .chroma .nd {
color: #d2a8ff;
font-weight: bold; }
body.colorscheme-dark .chroma .ni {
color: #ffa657; }
body.colorscheme-dark .chroma .ne {
color: #f0883e;
font-weight: bold; }
body.colorscheme-dark .chroma .nf {
color: #d2a8ff;
font-weight: bold; }
body.colorscheme-dark .chroma .nl {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-dark .chroma .nn {
color: #ff7b72; }
body.colorscheme-dark .chroma .py {
color: #79c0ff; }
body.colorscheme-dark .chroma .nt {
color: #7ee787; }
body.colorscheme-dark .chroma .nv {
color: #79c0ff; }
body.colorscheme-dark .chroma .l {
color: #a5d6ff; }
body.colorscheme-dark .chroma .ld {
color: #79c0ff; }
body.colorscheme-dark .chroma .s {
color: #a5d6ff; }
body.colorscheme-dark .chroma .sa {
color: #79c0ff; }
body.colorscheme-dark .chroma .sb {
color: #a5d6ff; }
body.colorscheme-dark .chroma .sc {
color: #a5d6ff; }
body.colorscheme-dark .chroma .dl {
color: #79c0ff; }
body.colorscheme-dark .chroma .sd {
color: #a5d6ff; }
body.colorscheme-dark .chroma .s2 {
color: #a5d6ff; }
body.colorscheme-dark .chroma .se {
color: #79c0ff; }
body.colorscheme-dark .chroma .sh {
color: #79c0ff; }
body.colorscheme-dark .chroma .si {
color: #a5d6ff; }
body.colorscheme-dark .chroma .sx {
color: #a5d6ff; }
body.colorscheme-dark .chroma .sr {
color: #79c0ff; }
body.colorscheme-dark .chroma .s1 {
color: #a5d6ff; }
body.colorscheme-dark .chroma .ss {
color: #a5d6ff; }
body.colorscheme-dark .chroma .m {
color: #a5d6ff; }
body.colorscheme-dark .chroma .mb {
color: #a5d6ff; }
body.colorscheme-dark .chroma .mf {
color: #a5d6ff; }
body.colorscheme-dark .chroma .mh {
color: #a5d6ff; }
body.colorscheme-dark .chroma .mi {
color: #a5d6ff; }
body.colorscheme-dark .chroma .il {
color: #a5d6ff; }
body.colorscheme-dark .chroma .mo {
color: #a5d6ff; }
body.colorscheme-dark .chroma .o {
color: #ff7b72;
font-weight: bold; }
body.colorscheme-dark .chroma .ow {
color: #ff7b72;
font-weight: bold; }
body.colorscheme-dark .chroma .c {
color: #8b949e;
font-style: italic; }
body.colorscheme-dark .chroma .ch {
color: #8b949e;
font-style: italic; }
body.colorscheme-dark .chroma .cm {
color: #8b949e;
font-style: italic; }
body.colorscheme-dark .chroma .c1 {
color: #8b949e;
font-style: italic; }
body.colorscheme-dark .chroma .cs {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-dark .chroma .cp {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-dark .chroma .cpf {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-dark .chroma .gd {
color: #ffa198;
background-color: #490202; }
body.colorscheme-dark .chroma .ge {
font-style: italic; }
body.colorscheme-dark .chroma .gr {
color: #ffa198; }
body.colorscheme-dark .chroma .gh {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-dark .chroma .gi {
color: #56d364;
background-color: #0f5323; }
body.colorscheme-dark .chroma .go {
color: #8b949e; }
body.colorscheme-dark .chroma .gp {
color: #8b949e; }
body.colorscheme-dark .chroma .gs {
font-weight: bold; }
body.colorscheme-dark .chroma .gu {
color: #79c0ff; }
body.colorscheme-dark .chroma .gt {
color: #ff7b72; }
body.colorscheme-dark .chroma .gl {
text-decoration: underline; }
body.colorscheme-dark .chroma .w {
color: #6e7681; }
@media (prefers-color-scheme: dark) {
body.colorscheme-auto {
/* Background */
/* PreWrapper */
/* Other */
/* Error */
/* CodeLine */
/* LineLink */
/* LineTableTD */
/* LineTable */
/* LineHighlight */
/* LineNumbersTable */
/* LineNumbers */
/* Line */
/* Keyword */
/* KeywordConstant */
/* KeywordDeclaration */
/* KeywordNamespace */
/* KeywordPseudo */
/* KeywordReserved */
/* KeywordType */
/* Name */
/* NameAttribute */
/* NameBuiltin */
/* NameBuiltinPseudo */
/* NameClass */
/* NameConstant */
/* NameDecorator */
/* NameEntity */
/* NameException */
/* NameFunction */
/* NameFunctionMagic */
/* NameLabel */
/* NameNamespace */
/* NameOther */
/* NameProperty */
/* NameTag */
/* NameVariable */
/* NameVariableClass */
/* NameVariableGlobal */
/* NameVariableInstance */
/* NameVariableMagic */
/* Literal */
/* LiteralDate */
/* LiteralString */
/* LiteralStringAffix */
/* LiteralStringBacktick */
/* LiteralStringChar */
/* LiteralStringDelimiter */
/* LiteralStringDoc */
/* LiteralStringDouble */
/* LiteralStringEscape */
/* LiteralStringHeredoc */
/* LiteralStringInterpol */
/* LiteralStringOther */
/* LiteralStringRegex */
/* LiteralStringSingle */
/* LiteralStringSymbol */
/* LiteralNumber */
/* LiteralNumberBin */
/* LiteralNumberFloat */
/* LiteralNumberHex */
/* LiteralNumberInteger */
/* LiteralNumberIntegerLong */
/* LiteralNumberOct */
/* Operator */
/* OperatorWord */
/* Punctuation */
/* Comment */
/* CommentHashbang */
/* CommentMultiline */
/* CommentSingle */
/* CommentSpecial */
/* CommentPreproc */
/* CommentPreprocFile */
/* Generic */
/* GenericDeleted */
/* GenericEmph */
/* GenericError */
/* GenericHeading */
/* GenericInserted */
/* GenericOutput */
/* GenericPrompt */
/* GenericStrong */
/* GenericSubheading */
/* GenericTraceback */
/* GenericUnderline */
/* TextWhitespace */ }
body.colorscheme-auto .bg {
color: #c9d1d9;
background-color: #0d1117; }
body.colorscheme-auto .chroma {
color: #c9d1d9;
background-color: #0d1117; }
body.colorscheme-auto .chroma .err {
color: #f85149; }
body.colorscheme-auto .chroma .lnlinks {
outline: none;
text-decoration: none;
color: inherit; }
body.colorscheme-auto .chroma .lntd {
vertical-align: top;
padding: 0;
margin: 0;
border: 0; }
body.colorscheme-auto .chroma .lntable {
border-spacing: 0;
padding: 0;
margin: 0;
border: 0; }
body.colorscheme-auto .chroma .hl {
background-color: #ffffcc; }
body.colorscheme-auto .chroma .lnt {
white-space: pre;
user-select: none;
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #64686c; }
body.colorscheme-auto .chroma .ln {
white-space: pre;
user-select: none;
margin-right: 0.4em;
padding: 0 0.4em 0 0.4em;
color: #6e7681; }
body.colorscheme-auto .chroma .line {
display: flex; }
body.colorscheme-auto .chroma .k {
color: #ff7b72; }
body.colorscheme-auto .chroma .kc {
color: #79c0ff; }
body.colorscheme-auto .chroma .kd {
color: #ff7b72; }
body.colorscheme-auto .chroma .kn {
color: #ff7b72; }
body.colorscheme-auto .chroma .kp {
color: #79c0ff; }
body.colorscheme-auto .chroma .kr {
color: #ff7b72; }
body.colorscheme-auto .chroma .kt {
color: #ff7b72; }
body.colorscheme-auto .chroma .nc {
color: #f0883e;
font-weight: bold; }
body.colorscheme-auto .chroma .no {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-auto .chroma .nd {
color: #d2a8ff;
font-weight: bold; }
body.colorscheme-auto .chroma .ni {
color: #ffa657; }
body.colorscheme-auto .chroma .ne {
color: #f0883e;
font-weight: bold; }
body.colorscheme-auto .chroma .nf {
color: #d2a8ff;
font-weight: bold; }
body.colorscheme-auto .chroma .nl {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-auto .chroma .nn {
color: #ff7b72; }
body.colorscheme-auto .chroma .py {
color: #79c0ff; }
body.colorscheme-auto .chroma .nt {
color: #7ee787; }
body.colorscheme-auto .chroma .nv {
color: #79c0ff; }
body.colorscheme-auto .chroma .l {
color: #a5d6ff; }
body.colorscheme-auto .chroma .ld {
color: #79c0ff; }
body.colorscheme-auto .chroma .s {
color: #a5d6ff; }
body.colorscheme-auto .chroma .sa {
color: #79c0ff; }
body.colorscheme-auto .chroma .sb {
color: #a5d6ff; }
body.colorscheme-auto .chroma .sc {
color: #a5d6ff; }
body.colorscheme-auto .chroma .dl {
color: #79c0ff; }
body.colorscheme-auto .chroma .sd {
color: #a5d6ff; }
body.colorscheme-auto .chroma .s2 {
color: #a5d6ff; }
body.colorscheme-auto .chroma .se {
color: #79c0ff; }
body.colorscheme-auto .chroma .sh {
color: #79c0ff; }
body.colorscheme-auto .chroma .si {
color: #a5d6ff; }
body.colorscheme-auto .chroma .sx {
color: #a5d6ff; }
body.colorscheme-auto .chroma .sr {
color: #79c0ff; }
body.colorscheme-auto .chroma .s1 {
color: #a5d6ff; }
body.colorscheme-auto .chroma .ss {
color: #a5d6ff; }
body.colorscheme-auto .chroma .m {
color: #a5d6ff; }
body.colorscheme-auto .chroma .mb {
color: #a5d6ff; }
body.colorscheme-auto .chroma .mf {
color: #a5d6ff; }
body.colorscheme-auto .chroma .mh {
color: #a5d6ff; }
body.colorscheme-auto .chroma .mi {
color: #a5d6ff; }
body.colorscheme-auto .chroma .il {
color: #a5d6ff; }
body.colorscheme-auto .chroma .mo {
color: #a5d6ff; }
body.colorscheme-auto .chroma .o {
color: #ff7b72;
font-weight: bold; }
body.colorscheme-auto .chroma .ow {
color: #ff7b72;
font-weight: bold; }
body.colorscheme-auto .chroma .c {
color: #8b949e;
font-style: italic; }
body.colorscheme-auto .chroma .ch {
color: #8b949e;
font-style: italic; }
body.colorscheme-auto .chroma .cm {
color: #8b949e;
font-style: italic; }
body.colorscheme-auto .chroma .c1 {
color: #8b949e;
font-style: italic; }
body.colorscheme-auto .chroma .cs {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-auto .chroma .cp {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-auto .chroma .cpf {
color: #8b949e;
font-weight: bold;
font-style: italic; }
body.colorscheme-auto .chroma .gd {
color: #ffa198;
background-color: #490202; }
body.colorscheme-auto .chroma .ge {
font-style: italic; }
body.colorscheme-auto .chroma .gr {
color: #ffa198; }
body.colorscheme-auto .chroma .gh {
color: #79c0ff;
font-weight: bold; }
body.colorscheme-auto .chroma .gi {
color: #56d364;
background-color: #0f5323; }
body.colorscheme-auto .chroma .go {
color: #8b949e; }
body.colorscheme-auto .chroma .gp {
color: #8b949e; }
body.colorscheme-auto .chroma .gs {
font-weight: bold; }
body.colorscheme-auto .chroma .gu {
color: #79c0ff; }
body.colorscheme-auto .chroma .gt {
color: #ff7b72; }
body.colorscheme-auto .chroma .gl {
text-decoration: underline; }
body.colorscheme-auto .chroma .w {
color: #6e7681; } }
/*# sourceMappingURL=coder-dark.css.map */
File diff suppressed because one or more lines are too long
-11498
View File
File diff suppressed because it is too large Load Diff
File diff suppressed because one or more lines are too long
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="404 Page not found"> <meta name="twitter:title" content="404 Page not found">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/404.html"> <meta property="og:url" content="http://markinstefan.xyz/de/404.html">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="404 Page not found"> <meta property="og:title" content="404 Page not found">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/404.html"> <link rel="canonical" href="http://markinstefan.xyz/de/404.html">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<div class="error"> <div class="error">
<h1>404</h1> <h1>404</h1>
<h2>Seite nicht gefunden</h2> <h2>Seite nicht gefunden</h2>
<p>Tut mir leid, die Seite existiert leider nicht.<br />Du kannst hier zurück zur <a href="http://localhost:1313/">Startseite</a>.</p> <p>Tut mir leid, die Seite existiert leider nicht.<br />Du kannst hier zurück zur <a href="http://markinstefan.xyz/">Startseite</a>.</p>
</div> </div>
</section> </section>
@@ -186,7 +186,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Weiterleitung zum Gitea-Profil"> <meta name="twitter:title" content="Weiterleitung zum Gitea-Profil">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/about/"> <meta property="og:url" content="http://markinstefan.xyz/de/about/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Weiterleitung zum Gitea-Profil"> <meta property="og:title" content="Weiterleitung zum Gitea-Profil">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/about/"> <link rel="canonical" href="http://markinstefan.xyz/de/about/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Autoren · Markin Stefan</title> <title>Autoren · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Authors"> <meta name="twitter:title" content="Authors">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/authors/"> <meta property="og:url" content="http://markinstefan.xyz/de/authors/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Authors"> <meta property="og:title" content="Authors">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/authors/"> <link rel="canonical" href="http://markinstefan.xyz/de/authors/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/de/authors/">Autoren</a> <a class="title-link" href="http://markinstefan.xyz/de/authors/">Autoren</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Authors on Markin Stefan</title> <title>Authors on Markin Stefan</title>
<link>http://localhost:1313/de/authors/</link> <link>http://markinstefan.xyz/de/authors/</link>
<description>Recent content in Authors on Markin Stefan</description> <description>Recent content in Authors on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>de</language> <language>de</language>
<atom:link href="http://localhost:1313/de/authors/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/de/authors/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/authors/</title> <title>http://markinstefan.xyz/de/authors/</title>
<link rel="canonical" href="http://localhost:1313/de/authors/"> <link rel="canonical" href="http://markinstefan.xyz/de/authors/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/authors/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/authors/">
</head> </head>
</html> </html>
Executable → Regular
+10 -10
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Kategorien · Markin Stefan</title> <title>Kategorien · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Categories"> <meta name="twitter:title" content="Categories">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/categories/"> <meta property="og:url" content="http://markinstefan.xyz/de/categories/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Categories"> <meta property="og:title" content="Categories">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/categories/"> <link rel="canonical" href="http://markinstefan.xyz/de/categories/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -137,14 +137,14 @@
<li class="navigation-item"> <li class="navigation-item">
<a href="/ru/categories/">🇷🇺</a> <a href="/categories/">🇬🇧</a>
</li> </li>
<li class="navigation-item"> <li class="navigation-item">
<a href="/categories/">🇬🇧</a> <a href="/ru/categories/">🇷🇺</a>
</li> </li>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/de/categories/">Kategorien</a> <a class="title-link" href="http://markinstefan.xyz/de/categories/">Kategorien</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Markin Stefan</title> <title>Categories on Markin Stefan</title>
<link>http://localhost:1313/de/categories/</link> <link>http://markinstefan.xyz/de/categories/</link>
<description>Recent content in Categories on Markin Stefan</description> <description>Recent content in Categories on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>de</language> <language>de</language>
<atom:link href="http://localhost:1313/de/categories/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/de/categories/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/categories/</title> <title>http://markinstefan.xyz/de/categories/</title>
<link rel="canonical" href="http://localhost:1313/de/categories/"> <link rel="canonical" href="http://markinstefan.xyz/de/categories/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/categories/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/categories/">
</head> </head>
</html> </html>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title> <title>
Kontakt · Markin Stefan Kontakt · Markin Stefan
</title> </title>
@@ -30,7 +30,7 @@ Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen.">
<meta name="twitter:description" content="Wenn Sie meine Telefonnummer haben, nur über: <meta name="twitter:description" content="Wenn Sie meine Telefonnummer haben, nur über:
SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch was für persönliche Gespräche. Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen."> SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch was für persönliche Gespräche. Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen.">
<meta property="og:url" content="http://localhost:1313/de/contact/"> <meta property="og:url" content="http://markinstefan.xyz/de/contact/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Kontakt"> <meta property="og:title" content="Kontakt">
<meta property="og:description" content="Wenn Sie meine Telefonnummer haben, nur über: <meta property="og:description" content="Wenn Sie meine Telefonnummer haben, nur über:
@@ -41,7 +41,7 @@ SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch
<link rel="canonical" href="http://localhost:1313/de/contact/"> <link rel="canonical" href="http://markinstefan.xyz/de/contact/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -51,7 +51,7 @@ SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -61,7 +61,7 @@ SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -110,7 +110,7 @@ SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -171,7 +171,7 @@ SMS Direkt anrufen Signal Ich nutze kein WhatsApp oder Telegram oder sonst noch
<article> <article>
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/de/contact/"> <a class="title-link" href="http://markinstefan.xyz/de/contact/">
Kontakt Kontakt
</a> </a>
</h1> </h1>
@@ -212,7 +212,7 @@ Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen.</p>
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/marriage/</title> <title>http://markinstefan.xyz/de/marriage/</title>
<link rel="canonical" href="http://localhost:1313/de/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/de/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/marriage/</title> <title>http://markinstefan.xyz/de/marriage/</title>
<link rel="canonical" href="http://localhost:1313/de/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/de/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Markin Stefan"> <meta name="twitter:title" content="Markin Stefan">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/"> <meta property="og:url" content="http://markinstefan.xyz/de/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Markin Stefan"> <meta property="og:title" content="Markin Stefan">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/"> <link rel="canonical" href="http://markinstefan.xyz/de/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -101,7 +101,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -232,7 +232,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+10 -10
View File
@@ -2,37 +2,37 @@
<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>Markin Stefan</title> <title>Markin Stefan</title>
<link>http://localhost:1313/de/</link> <link>http://markinstefan.xyz/de/</link>
<description>Recent content on Markin Stefan</description> <description>Recent content on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>de</language> <language>de</language>
<atom:link href="http://localhost:1313/de/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/de/index.xml" rel="self" type="application/rss+xml" />
<item> <item>
<title>Hochzeit von Stefan und Mariia</title> <title>Hochzeit von Stefan und Mariia</title>
<link>http://localhost:1313/de/marriage/</link> <link>http://markinstefan.xyz/de/marriage/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/de/marriage/</guid> <guid>http://markinstefan.xyz/de/marriage/</guid>
<description>&lt;p&gt;Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen.&lt;/p&gt;&#xA;&lt;p&gt;Wir freuen uns darauf, Sie dort zu sehen!&lt;/p&gt;</description> <description>&lt;p&gt;Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen.&lt;/p&gt;&#xA;&lt;p&gt;Wir freuen uns darauf, Sie dort zu sehen!&lt;/p&gt;</description>
</item> </item>
<item> <item>
<title>Kontakt</title> <title>Kontakt</title>
<link>http://localhost:1313/de/contact/</link> <link>http://markinstefan.xyz/de/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/de/contact/</guid> <guid>http://markinstefan.xyz/de/contact/</guid>
<description>&lt;p&gt;Wenn Sie meine Telefonnummer haben, &lt;strong&gt;nur&lt;/strong&gt; über:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Direkt anrufen&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Ich nutze &lt;strong&gt;kein&lt;/strong&gt; WhatsApp oder Telegram oder sonst noch was &lt;strong&gt;für persönliche Gespräche&lt;/strong&gt;. &lt;br&gt;&#xA;Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen.&lt;/p&gt;</description> <description>&lt;p&gt;Wenn Sie meine Telefonnummer haben, &lt;strong&gt;nur&lt;/strong&gt; über:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Direkt anrufen&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Ich nutze &lt;strong&gt;kein&lt;/strong&gt; WhatsApp oder Telegram oder sonst noch was &lt;strong&gt;für persönliche Gespräche&lt;/strong&gt;. &lt;br&gt;&#xA;Schreiben Sie mir unter eines der Drei-Genannten Empfehlungen.&lt;/p&gt;</description>
</item> </item>
<item> <item>
<title>Weiterleitung zum Gitea-Profil</title> <title>Weiterleitung zum Gitea-Profil</title>
<link>http://localhost:1313/de/about/</link> <link>http://markinstefan.xyz/de/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/de/about/</guid> <guid>http://markinstefan.xyz/de/about/</guid>
<description></description> <description></description>
</item> </item>
<item> <item>
<title>Weiterleitung zum Gitea-Repository</title> <title>Weiterleitung zum Gitea-Repository</title>
<link>http://localhost:1313/de/projects/</link> <link>http://markinstefan.xyz/de/projects/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/de/projects/</guid> <guid>http://markinstefan.xyz/de/projects/</guid>
<description></description> <description></description>
</item> </item>
</channel> </channel>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/marriage/</title> <title>http://markinstefan.xyz/de/marriage/</title>
<link rel="canonical" href="http://localhost:1313/de/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/de/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+64 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -22,7 +22,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<meta name="twitter:description" content="Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen. <meta name="twitter:description" content="Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen.
Wir freuen uns darauf, Sie dort zu sehen!"> Wir freuen uns darauf, Sie dort zu sehen!">
<meta property="og:url" content="http://localhost:1313/de/marriage/"> <meta property="og:url" content="http://markinstefan.xyz/de/marriage/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Hochzeit von Stefan und Mariia"> <meta property="og:title" content="Hochzeit von Stefan und Mariia">
<meta property="og:description" content="Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen. <meta property="og:description" content="Wir freuen uns, Sie zur Hochzeit von Stefan und Mariia einzuladen! Feiern Sie mit uns diesen besonderen Tag voller Liebe, Freude und wundervoller Erinnerungen.
@@ -33,7 +33,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<link rel="canonical" href="http://localhost:1313/de/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/de/marriage/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -43,7 +43,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -53,7 +53,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -102,7 +102,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -238,6 +238,63 @@ Wir freuen uns darauf, Sie dort zu sehen!">
</style> </style>
<div class="wedding-container"> <div class="wedding-container">
<style>
.music-fab {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9999;
}
.fab-button {
width: 52px;
height: 52px;
border-radius: 50%;
border: none;
background: white;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
font-size: 20px;
cursor: pointer;
transition: transform 0.15s ease;
}
.fab-button:active {
transform: scale(0.95);
}
</style>
<div class="music-fab">
<button id="music-btn" class="fab-button">▶️</button>
</div>
<audio id="bg-music" loop>
<source src="/audio/canon-in-d.mp3" type="audio/mpeg">
</audio>
<script>
const btn = document.getElementById("music-btn");
const audio = document.getElementById("bg-music");
audio.volume = 0.2;
let isPlaying = false;
btn.addEventListener("click", async () => {
if (!isPlaying) {
try {
await audio.play();
isPlaying = true;
btn.textContent = "⏸️";
} catch (e) {
console.log("Playback blocked:", e);
}
} else {
audio.pause();
isPlaying = false;
btn.textContent = "▶️";
}
});
</script>
<div class="countdown"> <div class="countdown">
@@ -364,7 +421,7 @@ Wir freuen uns darauf, Sie dort zu sehen!">
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
@@ -1,244 +0,0 @@
<!DOCTYPE html>
<html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script>
<title>
Hochzeit von Maria und Stefan · Markin Stefan
</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="color-scheme" content="light dark">
<meta name="author" content="Markin Stefan">
<meta name="description" content="Sítio pessoal de João Ninguém">
<meta name="keywords" content="blog,desenvolvedor,pessoal">
<meta name="twitter:card" content="summary">
<meta name="twitter:title" content="Hochzeit von Maria und Stefan">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/marriage/">
<meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Hochzeit von Maria und Stefan">
<meta property="og:description" content="Sítio pessoal de João Ninguém">
<meta property="og:locale" content="de">
<meta property="og:type" content="article">
<meta property="article:published_time" content="2026-05-04T12:42:52+02:00">
<meta property="article:modified_time" content="2026-05-04T12:42:52+02:00">
<link rel="canonical" href="http://localhost:1313/de/marriage/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/fa-regular-400.woff2" as="font" type="font/woff2" crossorigin>
<link rel="preload" href="/fonts/fa-solid-900.woff2" as="font" type="font/woff2" crossorigin>
<link rel="stylesheet" href="/css/coder.css" media="screen">
<link rel="stylesheet" href="/css/coder-dark.css" media="screen">
<link rel="icon" type="image/svg+xml" href="/images/favicon.svg" sizes="any">
<link rel="icon" type="image/png" href="/images/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/images/favicon-16x16.png" sizes="16x16">
<link rel="apple-touch-icon" href="/images/apple-touch-icon.png">
<link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
<link rel="manifest" href="/site.webmanifest">
<link rel="mask-icon" href="/images/safari-pinned-tab.svg" color="#5bbad5">
</head>
<body class="preload-transitions colorscheme-auto">
<div class="float-container">
<a id="dark-mode-toggle" class="colorscheme-toggle">
<i class="fa-solid fa-adjust fa-fw" aria-hidden="true"></i>
</a>
</div>
<main class="wrapper">
<nav class="navigation">
<section class="container">
<a class="navigation-title" href="http://localhost:1313/de/">
Markin Stefan
</a>
<input type="checkbox" id="menu-toggle" />
<label class="menu-button float-right" for="menu-toggle">
<i class="fa-solid fa-bars fa-fw" aria-hidden="true"></i>
</label>
<ul class="navigation-list">
<li class="navigation-item">
<a class="navigation-link " href="/de/about/">Über mich</a>
</li>
<li class="navigation-item">
<a class="navigation-link " href="/de/projects/">Projekte</a>
</li>
<li class="navigation-item">
<a class="navigation-link " href="/de/contact/">Kontakt</a>
</li>
<li class="navigation-item menu-separator">
<span>|</span>
</li>
<li class="navigation-item">
<a href="/marriage/">🇬🇧</a>
</li>
<li class="navigation-item">
<a href="/ru/marriage/">🇷🇺</a>
</li>
</ul>
</section>
</nav>
<div class="content">
<section class="container page">
<article>
<header>
<h1 class="title">
<a class="title-link" href="http://localhost:1313/de/marriage/">
Hochzeit von Maria und Stefan
</a>
</h1>
</header>
</article>
</section>
</div>
<footer class="footer">
<section class="container">
©
2026
Markin Stefan
·
Gestaltet mit <a href="https://gohugo.io/" target="_blank" rel="noopener">Hugo</a> & <a href="https://github.com/luizdepra/hugo-coder/" target="_blank" rel="noopener">Coder</a>.
</section>
</footer>
</main>
<script src="/js/coder.js"></script>
</body>
</html>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Weiterleitung zum Gitea-Repository"> <meta name="twitter:title" content="Weiterleitung zum Gitea-Repository">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/projects/"> <meta property="og:url" content="http://markinstefan.xyz/de/projects/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Weiterleitung zum Gitea-Repository"> <meta property="og:title" content="Weiterleitung zum Gitea-Repository">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/projects/"> <link rel="canonical" href="http://markinstefan.xyz/de/projects/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Serien · Markin Stefan</title> <title>Serien · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Series"> <meta name="twitter:title" content="Series">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/series/"> <meta property="og:url" content="http://markinstefan.xyz/de/series/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Series"> <meta property="og:title" content="Series">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/series/"> <link rel="canonical" href="http://markinstefan.xyz/de/series/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/de/series/">Serien</a> <a class="title-link" href="http://markinstefan.xyz/de/series/">Serien</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Series on Markin Stefan</title> <title>Series on Markin Stefan</title>
<link>http://localhost:1313/de/series/</link> <link>http://markinstefan.xyz/de/series/</link>
<description>Recent content in Series on Markin Stefan</description> <description>Recent content in Series on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>de</language> <language>de</language>
<atom:link href="http://localhost:1313/de/series/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/de/series/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/series/</title> <title>http://markinstefan.xyz/de/series/</title>
<link rel="canonical" href="http://localhost:1313/de/series/"> <link rel="canonical" href="http://markinstefan.xyz/de/series/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/series/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/series/">
</head> </head>
</html> </html>
Executable → Regular
+36 -36
View File
@@ -2,157 +2,157 @@
<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>http://localhost:1313/de/authors/</loc> <loc>http://markinstefan.xyz/de/authors/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/authors/" href="http://markinstefan.xyz/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/authors/" href="http://markinstefan.xyz/ru/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/authors/" href="http://markinstefan.xyz/de/authors/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/categories/</loc> <loc>http://markinstefan.xyz/de/categories/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/categories/" href="http://markinstefan.xyz/categories/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/categories/" href="http://markinstefan.xyz/ru/categories/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/categories/" href="http://markinstefan.xyz/de/categories/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/marriage/</loc> <loc>http://markinstefan.xyz/de/marriage/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/marriage/" href="http://markinstefan.xyz/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/marriage/" href="http://markinstefan.xyz/ru/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/marriage/" href="http://markinstefan.xyz/de/marriage/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/contact/</loc> <loc>http://markinstefan.xyz/de/contact/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/contact/" href="http://markinstefan.xyz/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/contact/" href="http://markinstefan.xyz/ru/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/contact/" href="http://markinstefan.xyz/de/contact/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/</loc> <loc>http://markinstefan.xyz/de/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/" href="http://markinstefan.xyz/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/" href="http://markinstefan.xyz/ru/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/" href="http://markinstefan.xyz/de/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/series/</loc> <loc>http://markinstefan.xyz/de/series/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/series/" href="http://markinstefan.xyz/series/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/series/" href="http://markinstefan.xyz/ru/series/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/series/" href="http://markinstefan.xyz/de/series/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/tags/</loc> <loc>http://markinstefan.xyz/de/tags/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/tags/" href="http://markinstefan.xyz/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/tags/" href="http://markinstefan.xyz/ru/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/tags/" href="http://markinstefan.xyz/de/tags/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/about/</loc> <loc>http://markinstefan.xyz/de/about/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/about/" href="http://markinstefan.xyz/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/about/" href="http://markinstefan.xyz/ru/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/about/" href="http://markinstefan.xyz/de/about/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/de/projects/</loc> <loc>http://markinstefan.xyz/de/projects/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/projects/" href="http://markinstefan.xyz/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/projects/" href="http://markinstefan.xyz/ru/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/projects/" href="http://markinstefan.xyz/de/projects/"
/> />
</url> </url>
</urlset> </urlset>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Tags · Markin Stefan</title> <title>Tags · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Tags"> <meta name="twitter:title" content="Tags">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/de/tags/"> <meta property="og:url" content="http://markinstefan.xyz/de/tags/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Tags"> <meta property="og:title" content="Tags">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/de/tags/"> <link rel="canonical" href="http://markinstefan.xyz/de/tags/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/de/"> <a class="navigation-title" href="http://markinstefan.xyz/de/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/de/tags/">Tags</a> <a class="title-link" href="http://markinstefan.xyz/de/tags/">Tags</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Markin Stefan</title> <title>Tags on Markin Stefan</title>
<link>http://localhost:1313/de/tags/</link> <link>http://markinstefan.xyz/de/tags/</link>
<description>Recent content in Tags on Markin Stefan</description> <description>Recent content in Tags on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>de</language> <language>de</language>
<atom:link href="http://localhost:1313/de/tags/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/de/tags/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="de"> <html lang="de">
<head> <head>
<title>http://localhost:1313/de/tags/</title> <title>http://markinstefan.xyz/de/tags/</title>
<link rel="canonical" href="http://localhost:1313/de/tags/"> <link rel="canonical" href="http://markinstefan.xyz/de/tags/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/de/tags/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/de/tags/">
</head> </head>
</html> </html>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/</title> <title>http://markinstefan.xyz/</title>
<link rel="canonical" href="http://localhost:1313/"> <link rel="canonical" href="http://markinstefan.xyz/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/">
</head> </head>
</html> </html>
Executable → Regular
+40 -40
View File
@@ -2,157 +2,157 @@
<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>http://localhost:1313/authors/</loc> <loc>http://markinstefan.xyz/authors/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/authors/" href="http://markinstefan.xyz/de/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/authors/" href="http://markinstefan.xyz/ru/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/authors/" href="http://markinstefan.xyz/authors/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/categories/</loc> <loc>http://markinstefan.xyz/categories/</loc>
<xhtml:link
rel="alternate"
hreflang="ru"
href="http://localhost:1313/ru/categories/"
/>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/categories/" href="http://markinstefan.xyz/de/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="ru"
href="http://markinstefan.xyz/ru/categories/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/categories/" href="http://markinstefan.xyz/categories/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/contact/</loc> <loc>http://markinstefan.xyz/contact/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/contact/" href="http://markinstefan.xyz/de/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/contact/" href="http://markinstefan.xyz/ru/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/contact/" href="http://markinstefan.xyz/contact/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/</loc> <loc>http://markinstefan.xyz/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/" href="http://markinstefan.xyz/de/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/" href="http://markinstefan.xyz/ru/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/" href="http://markinstefan.xyz/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/marriage/</loc> <loc>http://markinstefan.xyz/marriage/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/marriage/" href="http://markinstefan.xyz/de/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/marriage/" href="http://markinstefan.xyz/ru/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/marriage/" href="http://markinstefan.xyz/marriage/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/about/</loc> <loc>http://markinstefan.xyz/about/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/about/" href="http://markinstefan.xyz/de/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/about/" href="http://markinstefan.xyz/ru/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/about/" href="http://markinstefan.xyz/about/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/projects/</loc> <loc>http://markinstefan.xyz/projects/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/projects/" href="http://markinstefan.xyz/de/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/projects/" href="http://markinstefan.xyz/ru/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/projects/" href="http://markinstefan.xyz/projects/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/series/</loc> <loc>http://markinstefan.xyz/series/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/series/" href="http://markinstefan.xyz/de/series/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/series/" href="http://markinstefan.xyz/ru/series/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/series/" href="http://markinstefan.xyz/series/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/tags/</loc> <loc>http://markinstefan.xyz/tags/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/tags/" href="http://markinstefan.xyz/de/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/tags/" href="http://markinstefan.xyz/ru/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/tags/" href="http://markinstefan.xyz/tags/"
/> />
</url> </url>
</urlset> </urlset>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Markin Stefan"> <meta name="twitter:title" content="Markin Stefan">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/"> <meta property="og:url" content="http://markinstefan.xyz/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Markin Stefan"> <meta property="og:title" content="Markin Stefan">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/"> <link rel="canonical" href="http://markinstefan.xyz/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -101,7 +101,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -232,7 +232,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+10 -10
View File
@@ -2,37 +2,37 @@
<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>Markin Stefan</title> <title>Markin Stefan</title>
<link>http://localhost:1313/</link> <link>http://markinstefan.xyz/</link>
<description>Recent content on Markin Stefan</description> <description>Recent content on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>en</language> <language>en</language>
<atom:link href="http://localhost:1313/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/index.xml" rel="self" type="application/rss+xml" />
<item> <item>
<title>Contact</title> <title>Contact</title>
<link>http://localhost:1313/contact/</link> <link>http://markinstefan.xyz/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/contact/</guid> <guid>http://markinstefan.xyz/contact/</guid>
<description>&lt;p&gt;If you have my phone number, &lt;strong&gt;only&lt;/strong&gt; through:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Directly calling&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;I do &lt;strong&gt;not&lt;/strong&gt; use WhatsApp or Telegram &lt;strong&gt;for personal conversations&lt;/strong&gt;.&lt;br&gt;&#xA;Write to me using one of the three recommendations mentioned.&lt;/p&gt;</description> <description>&lt;p&gt;If you have my phone number, &lt;strong&gt;only&lt;/strong&gt; through:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Directly calling&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;I do &lt;strong&gt;not&lt;/strong&gt; use WhatsApp or Telegram &lt;strong&gt;for personal conversations&lt;/strong&gt;.&lt;br&gt;&#xA;Write to me using one of the three recommendations mentioned.&lt;/p&gt;</description>
</item> </item>
<item> <item>
<title>Marriage of Stefan and Mariia</title> <title>Marriage of Stefan and Mariia</title>
<link>http://localhost:1313/marriage/</link> <link>http://markinstefan.xyz/marriage/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/marriage/</guid> <guid>http://markinstefan.xyz/marriage/</guid>
<description>&lt;p&gt;We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories.&lt;/p&gt;&#xA;&lt;p&gt;We look forward to seeing you there!&lt;/p&gt;</description> <description>&lt;p&gt;We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories.&lt;/p&gt;&#xA;&lt;p&gt;We look forward to seeing you there!&lt;/p&gt;</description>
</item> </item>
<item> <item>
<title>Redirecting to Gitea Profile</title> <title>Redirecting to Gitea Profile</title>
<link>http://localhost:1313/about/</link> <link>http://markinstefan.xyz/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/about/</guid> <guid>http://markinstefan.xyz/about/</guid>
<description></description> <description></description>
</item> </item>
<item> <item>
<title>Redirecting to Gitea Repository</title> <title>Redirecting to Gitea Repository</title>
<link>http://localhost:1313/projects/</link> <link>http://markinstefan.xyz/projects/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/projects/</guid> <guid>http://markinstefan.xyz/projects/</guid>
<description></description> <description></description>
</item> </item>
</channel> </channel>
-97
View File
@@ -1,97 +0,0 @@
const body = document.body;
const darkModeToggle = document.getElementById('dark-mode-toggle');
const darkModeMediaQuery = window.matchMedia('(prefers-color-scheme: dark)');
// Check if user preference is set, if not check value of body class for light or dark else it means that colorscheme = auto
if (localStorage.getItem("colorscheme")) {
setTheme(localStorage.getItem("colorscheme"));
} else if (body.classList.contains('colorscheme-light') || body.classList.contains('colorscheme-dark')) {
setTheme(body.classList.contains("colorscheme-dark") ? "dark" : "light");
} else {
setTheme(darkModeMediaQuery.matches ? "dark" : "light");
}
if (darkModeToggle) {
darkModeToggle.addEventListener('click', () => {
let theme = body.classList.contains("colorscheme-dark") ? "light" : "dark";
setTheme(theme);
rememberTheme(theme);
});
}
darkModeMediaQuery.addListener((event) => {
setTheme(event.matches ? "dark" : "light");
});
document.addEventListener("DOMContentLoaded", function () {
let node = document.querySelector('.preload-transitions');
node.classList.remove('preload-transitions');
});
function setTheme(theme) {
body.classList.remove('colorscheme-auto');
let inverse = theme === 'dark' ? 'light' : 'dark';
body.classList.remove('colorscheme-' + inverse);
body.classList.add('colorscheme-' + theme);
document.documentElement.style['color-scheme'] = theme;
function waitForElm(selector) {
return new Promise(resolve => {
if (document.querySelector(selector)) {
return resolve(document.querySelector(selector));
}
const observer = new MutationObserver(mutations => {
if (document.querySelector(selector)) {
resolve(document.querySelector(selector));
observer.disconnect();
}
});
observer.observe(document.body, {
childList: true,
subtree: true
});
});
}
if (theme === 'dark') {
const message = {
type: 'set-theme',
theme: 'github-dark'
};
waitForElm('.utterances-frame').then((iframe) => {
iframe.contentWindow.postMessage(message, 'https://utteranc.es');
})
}
else {
const message = {
type: 'set-theme',
theme: 'github-light'
};
waitForElm('.utterances-frame').then((iframe) => {
iframe.contentWindow.postMessage(message, 'https://utteranc.es');
})
}
function sendMessage(message) {
const iframe = document.querySelector('iframe.giscus-frame');
if (!iframe) return;
iframe.contentWindow.postMessage({ giscus: message }, 'https://giscus.app');
}
sendMessage({
setConfig: {
theme: theme,
},
});
// Create and send event
const event = new Event('themeChanged');
document.dispatchEvent(event);
}
function rememberTheme(theme) {
localStorage.setItem('colorscheme', theme);
}
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/marriage/</title> <title>http://markinstefan.xyz/marriage/</title>
<link rel="canonical" href="http://localhost:1313/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+64 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -22,7 +22,7 @@ We look forward to seeing you there!">
<meta name="twitter:description" content="We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories. <meta name="twitter:description" content="We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories.
We look forward to seeing you there!"> We look forward to seeing you there!">
<meta property="og:url" content="http://localhost:1313/marriage/"> <meta property="og:url" content="http://markinstefan.xyz/marriage/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Marriage of Stefan and Mariia"> <meta property="og:title" content="Marriage of Stefan and Mariia">
<meta property="og:description" content="We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories. <meta property="og:description" content="We are happy to invite you to the wedding of Stefan and Mariia! Join us in celebrating this special day with love, joy, and wonderful memories.
@@ -33,7 +33,7 @@ We look forward to seeing you there!">
<link rel="canonical" href="http://localhost:1313/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/marriage/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -43,7 +43,7 @@ We look forward to seeing you there!">
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -53,7 +53,7 @@ We look forward to seeing you there!">
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -102,7 +102,7 @@ We look forward to seeing you there!">
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -238,6 +238,63 @@ We look forward to seeing you there!">
</style> </style>
<div class="wedding-container"> <div class="wedding-container">
<style>
.music-fab {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9999;
}
.fab-button {
width: 52px;
height: 52px;
border-radius: 50%;
border: none;
background: white;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
font-size: 20px;
cursor: pointer;
transition: transform 0.15s ease;
}
.fab-button:active {
transform: scale(0.95);
}
</style>
<div class="music-fab">
<button id="music-btn" class="fab-button">▶️</button>
</div>
<audio id="bg-music" loop>
<source src="/audio/canon-in-d.mp3" type="audio/mpeg">
</audio>
<script>
const btn = document.getElementById("music-btn");
const audio = document.getElementById("bg-music");
audio.volume = 0.2;
let isPlaying = false;
btn.addEventListener("click", async () => {
if (!isPlaying) {
try {
await audio.play();
isPlaying = true;
btn.textContent = "⏸️";
} catch (e) {
console.log("Playback blocked:", e);
}
} else {
audio.pause();
isPlaying = false;
btn.textContent = "▶️";
}
});
</script>
<div class="countdown"> <div class="countdown">
@@ -364,7 +421,7 @@ We look forward to seeing you there!">
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Markin Stefan</title> <title>Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Redirecting to Gitea Repository"> <meta name="twitter:title" content="Redirecting to Gitea Repository">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/projects/"> <meta property="og:url" content="http://markinstefan.xyz/projects/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Redirecting to Gitea Repository"> <meta property="og:title" content="Redirecting to Gitea Repository">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/projects/"> <link rel="canonical" href="http://markinstefan.xyz/projects/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Маркин Степан</title> <title>Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="404 Page not found"> <meta name="twitter:title" content="404 Page not found">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/404.html"> <meta property="og:url" content="http://markinstefan.xyz/ru/404.html">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="404 Page not found"> <meta property="og:title" content="404 Page not found">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/404.html"> <link rel="canonical" href="http://markinstefan.xyz/ru/404.html">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -160,7 +160,7 @@
<div class="error"> <div class="error">
<h1>404</h1> <h1>404</h1>
<h2>Страница не найдена</h2> <h2>Страница не найдена</h2>
<p>Извините, но этой страницы не существует.<br />Можете вернуться обратно на <a href="http://localhost:1313/">домашнюю страницу</a>.</p> <p>Извините, но этой страницы не существует.<br />Можете вернуться обратно на <a href="http://markinstefan.xyz/">домашнюю страницу</a>.</p>
</div> </div>
</section> </section>
@@ -186,7 +186,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Маркин Степан</title> <title>Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Перенаправление на профиль Gitea"> <meta name="twitter:title" content="Перенаправление на профиль Gitea">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/about/"> <meta property="og:url" content="http://markinstefan.xyz/ru/about/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Перенаправление на профиль Gitea"> <meta property="og:title" content="Перенаправление на профиль Gitea">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/about/"> <link rel="canonical" href="http://markinstefan.xyz/ru/about/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Авторы · Маркин Степан</title> <title>Авторы · Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Authors"> <meta name="twitter:title" content="Authors">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/authors/"> <meta property="og:url" content="http://markinstefan.xyz/ru/authors/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Authors"> <meta property="og:title" content="Authors">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/authors/"> <link rel="canonical" href="http://markinstefan.xyz/ru/authors/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/ru/authors/">Авторы</a> <a class="title-link" href="http://markinstefan.xyz/ru/authors/">Авторы</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Authors on Маркин Степан</title> <title>Authors on Маркин Степан</title>
<link>http://localhost:1313/ru/authors/</link> <link>http://markinstefan.xyz/ru/authors/</link>
<description>Recent content in Authors on Маркин Степан</description> <description>Recent content in Authors on Маркин Степан</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>ru</language> <language>ru</language>
<atom:link href="http://localhost:1313/ru/authors/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/ru/authors/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/authors/</title> <title>http://markinstefan.xyz/ru/authors/</title>
<link rel="canonical" href="http://localhost:1313/ru/authors/"> <link rel="canonical" href="http://markinstefan.xyz/ru/authors/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/authors/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/authors/">
</head> </head>
</html> </html>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/marriage/</title> <title>http://markinstefan.xyz/ru/marriage/</title>
<link rel="canonical" href="http://localhost:1313/ru/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/ru/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+10 -10
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Категории · Маркин Степан</title> <title>Категории · Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Categories"> <meta name="twitter:title" content="Categories">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/categories/"> <meta property="og:url" content="http://markinstefan.xyz/ru/categories/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Categories"> <meta property="og:title" content="Categories">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/categories/"> <link rel="canonical" href="http://markinstefan.xyz/ru/categories/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -137,14 +137,14 @@
<li class="navigation-item"> <li class="navigation-item">
<a href="/categories/">🇬🇧</a> <a href="/de/categories/">🇩🇪</a>
</li> </li>
<li class="navigation-item"> <li class="navigation-item">
<a href="/de/categories/">🇩🇪</a> <a href="/categories/">🇬🇧</a>
</li> </li>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/ru/categories/">Категории</a> <a class="title-link" href="http://markinstefan.xyz/ru/categories/">Категории</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Маркин Степан</title> <title>Categories on Маркин Степан</title>
<link>http://localhost:1313/ru/categories/</link> <link>http://markinstefan.xyz/ru/categories/</link>
<description>Recent content in Categories on Маркин Степан</description> <description>Recent content in Categories on Маркин Степан</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>ru</language> <language>ru</language>
<atom:link href="http://localhost:1313/ru/categories/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/ru/categories/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/categories/</title> <title>http://markinstefan.xyz/ru/categories/</title>
<link rel="canonical" href="http://localhost:1313/ru/categories/"> <link rel="canonical" href="http://markinstefan.xyz/ru/categories/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/categories/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/categories/">
</head> </head>
</html> </html>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title> <title>
Контакты · Маркин Степан Контакты · Маркин Степан
</title> </title>
@@ -31,7 +31,7 @@ Signal
SMS Позвоните напрямую Signal Я не использую WhatsApp или Telegram для личных разговоров. SMS Позвоните напрямую Signal Я не использую WhatsApp или Telegram для личных разговоров.
Напишите мне, используя одну из трех упомянутых рекомендаций."> Напишите мне, используя одну из трех упомянутых рекомендаций.">
<meta property="og:url" content="http://localhost:1313/ru/contact/"> <meta property="og:url" content="http://markinstefan.xyz/ru/contact/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Контакты"> <meta property="og:title" content="Контакты">
<meta property="og:description" content="Если у вас есть мой номер телефона, только через: <meta property="og:description" content="Если у вас есть мой номер телефона, только через:
@@ -43,7 +43,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<link rel="canonical" href="http://localhost:1313/ru/contact/"> <link rel="canonical" href="http://markinstefan.xyz/ru/contact/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -53,7 +53,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -63,7 +63,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -112,7 +112,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -173,7 +173,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<article> <article>
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/ru/contact/"> <a class="title-link" href="http://markinstefan.xyz/ru/contact/">
Контакты Контакты
</a> </a>
</h1> </h1>
@@ -214,7 +214,7 @@ SMS Позвоните напрямую Signal Я не использую WhatsA
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Маркин Степан</title> <title>Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Маркин Степан"> <meta name="twitter:title" content="Маркин Степан">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/"> <meta property="og:url" content="http://markinstefan.xyz/ru/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Маркин Степан"> <meta property="og:title" content="Маркин Степан">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/"> <link rel="canonical" href="http://markinstefan.xyz/ru/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -101,7 +101,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -232,7 +232,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+10 -10
View File
@@ -2,37 +2,37 @@
<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>Маркин Степан</title> <title>Маркин Степан</title>
<link>http://localhost:1313/ru/</link> <link>http://markinstefan.xyz/ru/</link>
<description>Recent content on Маркин Степан</description> <description>Recent content on Маркин Степан</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>ru</language> <language>ru</language>
<atom:link href="http://localhost:1313/ru/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/ru/index.xml" rel="self" type="application/rss+xml" />
<item> <item>
<title>Контакты</title> <title>Контакты</title>
<link>http://localhost:1313/ru/contact/</link> <link>http://markinstefan.xyz/ru/contact/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/ru/contact/</guid> <guid>http://markinstefan.xyz/ru/contact/</guid>
<description>&lt;p&gt;Если у вас есть мой номер телефона, &lt;strong&gt;только&lt;/strong&gt; через:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Позвоните напрямую&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Я &lt;strong&gt;не&lt;/strong&gt; использую WhatsApp или Telegram &lt;strong&gt;для личных разговоров&lt;/strong&gt;.&lt;br&gt;&#xA;Напишите мне, используя одну из трех упомянутых рекомендаций.&lt;/p&gt;</description> <description>&lt;p&gt;Если у вас есть мой номер телефона, &lt;strong&gt;только&lt;/strong&gt; через:&lt;/p&gt;&#xA;&lt;ul&gt;&#xA;&lt;li&gt;SMS&lt;/li&gt;&#xA;&lt;li&gt;Позвоните напрямую&lt;/li&gt;&#xA;&lt;li&gt;&lt;a href=&#34;https://signal.org/&#34; class=&#34;external-link&#34; target=&#34;_blank&#34; rel=&#34;noopener&#34;&gt;Signal&lt;/a&gt;&lt;/li&gt;&#xA;&lt;/ul&gt;&#xA;&lt;p&gt;Я &lt;strong&gt;не&lt;/strong&gt; использую WhatsApp или Telegram &lt;strong&gt;для личных разговоров&lt;/strong&gt;.&lt;br&gt;&#xA;Напишите мне, используя одну из трех упомянутых рекомендаций.&lt;/p&gt;</description>
</item> </item>
<item> <item>
<title>Перенаправление в репозиторий Gitea</title> <title>Перенаправление в репозиторий Gitea</title>
<link>http://localhost:1313/ru/projects/</link> <link>http://markinstefan.xyz/ru/projects/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/ru/projects/</guid> <guid>http://markinstefan.xyz/ru/projects/</guid>
<description></description> <description></description>
</item> </item>
<item> <item>
<title>Перенаправление на профиль Gitea</title> <title>Перенаправление на профиль Gitea</title>
<link>http://localhost:1313/ru/about/</link> <link>http://markinstefan.xyz/ru/about/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/ru/about/</guid> <guid>http://markinstefan.xyz/ru/about/</guid>
<description></description> <description></description>
</item> </item>
<item> <item>
<title>Свадьба Стефана и Марии</title> <title>Свадьба Стефана и Марии</title>
<link>http://localhost:1313/ru/marriage/</link> <link>http://markinstefan.xyz/ru/marriage/</link>
<pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate> <pubDate>Mon, 01 Jan 0001 00:00:00 +0000</pubDate>
<guid>http://localhost:1313/ru/marriage/</guid> <guid>http://markinstefan.xyz/ru/marriage/</guid>
<description>&lt;p&gt;С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями.&lt;/p&gt;&#xA;&lt;p&gt;С нетерпением ждем встречи с вами!&lt;/p&gt;</description> <description>&lt;p&gt;С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями.&lt;/p&gt;&#xA;&lt;p&gt;С нетерпением ждем встречи с вами!&lt;/p&gt;</description>
</item> </item>
</channel> </channel>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/marriage/</title> <title>http://markinstefan.xyz/ru/marriage/</title>
<link rel="canonical" href="http://localhost:1313/ru/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/ru/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+64 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Маркин Степан</title> <title>Маркин Степан</title>
<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">
@@ -22,7 +22,7 @@
<meta name="twitter:description" content="С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями. <meta name="twitter:description" content="С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями.
С нетерпением ждем встречи с вами!"> С нетерпением ждем встречи с вами!">
<meta property="og:url" content="http://localhost:1313/ru/marriage/"> <meta property="og:url" content="http://markinstefan.xyz/ru/marriage/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Свадьба Стефана и Марии"> <meta property="og:title" content="Свадьба Стефана и Марии">
<meta property="og:description" content="С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями. <meta property="og:description" content="С радостью приглашаем вас на свадьбу Стефана и Мариии! Присоединяйтесь к нам, чтобы отпраздновать этот особенный день, наполненный любовью, радостью и незабываемыми воспоминаниями.
@@ -33,7 +33,7 @@
<link rel="canonical" href="http://localhost:1313/ru/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/ru/marriage/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -43,7 +43,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -53,7 +53,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -102,7 +102,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -238,6 +238,63 @@
</style> </style>
<div class="wedding-container"> <div class="wedding-container">
<style>
.music-fab {
position: fixed;
bottom: 20px;
left: 20px;
z-index: 9999;
}
.fab-button {
width: 52px;
height: 52px;
border-radius: 50%;
border: none;
background: white;
box-shadow: 0 6px 18px rgba(0,0,0,0.2);
font-size: 20px;
cursor: pointer;
transition: transform 0.15s ease;
}
.fab-button:active {
transform: scale(0.95);
}
</style>
<div class="music-fab">
<button id="music-btn" class="fab-button">▶️</button>
</div>
<audio id="bg-music" loop>
<source src="/audio/canon-in-d.mp3" type="audio/mpeg">
</audio>
<script>
const btn = document.getElementById("music-btn");
const audio = document.getElementById("bg-music");
audio.volume = 0.2;
let isPlaying = false;
btn.addEventListener("click", async () => {
if (!isPlaying) {
try {
await audio.play();
isPlaying = true;
btn.textContent = "⏸️";
} catch (e) {
console.log("Playback blocked:", e);
}
} else {
audio.pause();
isPlaying = false;
btn.textContent = "▶️";
}
});
</script>
<div class="countdown"> <div class="countdown">
@@ -364,7 +421,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+7 -7
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Маркин Степан</title> <title>Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Перенаправление в репозиторий Gitea"> <meta name="twitter:title" content="Перенаправление в репозиторий Gitea">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/projects/"> <meta property="og:url" content="http://markinstefan.xyz/ru/projects/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Перенаправление в репозиторий Gitea"> <meta property="og:title" content="Перенаправление в репозиторий Gitea">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/projects/"> <link rel="canonical" href="http://markinstefan.xyz/ru/projects/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -99,7 +99,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -195,7 +195,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Серии · Маркин Степан</title> <title>Серии · Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Series"> <meta name="twitter:title" content="Series">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/series/"> <meta property="og:url" content="http://markinstefan.xyz/ru/series/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Series"> <meta property="og:title" content="Series">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/series/"> <link rel="canonical" href="http://markinstefan.xyz/ru/series/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/ru/series/">Серии</a> <a class="title-link" href="http://markinstefan.xyz/ru/series/">Серии</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Series on Маркин Степан</title> <title>Series on Маркин Степан</title>
<link>http://localhost:1313/ru/series/</link> <link>http://markinstefan.xyz/ru/series/</link>
<description>Recent content in Series on Маркин Степан</description> <description>Recent content in Series on Маркин Степан</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>ru</language> <language>ru</language>
<atom:link href="http://localhost:1313/ru/series/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/ru/series/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/series/</title> <title>http://markinstefan.xyz/ru/series/</title>
<link rel="canonical" href="http://localhost:1313/ru/series/"> <link rel="canonical" href="http://markinstefan.xyz/ru/series/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/series/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/series/">
</head> </head>
</html> </html>
Executable → Regular
+44 -44
View File
@@ -2,157 +2,157 @@
<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>http://localhost:1313/ru/authors/</loc> <loc>http://markinstefan.xyz/ru/authors/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/authors/" href="http://markinstefan.xyz/de/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/authors/" href="http://markinstefan.xyz/authors/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/authors/" href="http://markinstefan.xyz/ru/authors/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/categories/</loc> <loc>http://markinstefan.xyz/ru/categories/</loc>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://localhost:1313/categories/"
/>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/categories/" href="http://markinstefan.xyz/de/categories/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://markinstefan.xyz/categories/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/categories/" href="http://markinstefan.xyz/ru/categories/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/series/</loc> <loc>http://markinstefan.xyz/ru/series/</loc>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://localhost:1313/series/"
/>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/series/" href="http://markinstefan.xyz/de/series/"
/>
<xhtml:link
rel="alternate"
hreflang="en"
href="http://markinstefan.xyz/series/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/series/" href="http://markinstefan.xyz/ru/series/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/tags/</loc> <loc>http://markinstefan.xyz/ru/tags/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/tags/" href="http://markinstefan.xyz/de/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/tags/" href="http://markinstefan.xyz/tags/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/tags/" href="http://markinstefan.xyz/ru/tags/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/contact/</loc> <loc>http://markinstefan.xyz/ru/contact/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/contact/" href="http://markinstefan.xyz/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/contact/" href="http://markinstefan.xyz/de/contact/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/contact/" href="http://markinstefan.xyz/ru/contact/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/</loc> <loc>http://markinstefan.xyz/ru/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/" href="http://markinstefan.xyz/de/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/" href="http://markinstefan.xyz/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/" href="http://markinstefan.xyz/ru/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/projects/</loc> <loc>http://markinstefan.xyz/ru/projects/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/projects/" href="http://markinstefan.xyz/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/projects/" href="http://markinstefan.xyz/de/projects/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/projects/" href="http://markinstefan.xyz/ru/projects/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/about/</loc> <loc>http://markinstefan.xyz/ru/about/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/about/" href="http://markinstefan.xyz/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/about/" href="http://markinstefan.xyz/de/about/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/about/" href="http://markinstefan.xyz/ru/about/"
/> />
</url><url> </url><url>
<loc>http://localhost:1313/ru/marriage/</loc> <loc>http://markinstefan.xyz/ru/marriage/</loc>
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="de" hreflang="de"
href="http://localhost:1313/de/marriage/" href="http://markinstefan.xyz/de/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="en" hreflang="en"
href="http://localhost:1313/marriage/" href="http://markinstefan.xyz/marriage/"
/> />
<xhtml:link <xhtml:link
rel="alternate" rel="alternate"
hreflang="ru" hreflang="ru"
href="http://localhost:1313/ru/marriage/" href="http://markinstefan.xyz/ru/marriage/"
/> />
</url> </url>
</urlset> </urlset>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/marriage/</title> <title>http://markinstefan.xyz/ru/marriage/</title>
<link rel="canonical" href="http://localhost:1313/ru/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/ru/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/marriage/">
</head> </head>
</html> </html>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Тэги · Маркин Степан</title> <title>Тэги · Маркин Степан</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Tags"> <meta name="twitter:title" content="Tags">
<meta name="twitter:description" content="Sítio pessoal de João Ninguém"> <meta name="twitter:description" content="Sítio pessoal de João Ninguém">
<meta property="og:url" content="http://localhost:1313/ru/tags/"> <meta property="og:url" content="http://markinstefan.xyz/ru/tags/">
<meta property="og:site_name" content="Маркин Степан"> <meta property="og:site_name" content="Маркин Степан">
<meta property="og:title" content="Tags"> <meta property="og:title" content="Tags">
<meta property="og:description" content="Sítio pessoal de João Ninguém"> <meta property="og:description" content="Sítio pessoal de João Ninguém">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/ru/tags/"> <link rel="canonical" href="http://markinstefan.xyz/ru/tags/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/ru/"> <a class="navigation-title" href="http://markinstefan.xyz/ru/">
Маркин Степан Маркин Степан
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/ru/tags/">Тэги</a> <a class="title-link" href="http://markinstefan.xyz/ru/tags/">Тэги</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Маркин Степан</title> <title>Tags on Маркин Степан</title>
<link>http://localhost:1313/ru/tags/</link> <link>http://markinstefan.xyz/ru/tags/</link>
<description>Recent content in Tags on Маркин Степан</description> <description>Recent content in Tags on Маркин Степан</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>ru</language> <language>ru</language>
<atom:link href="http://localhost:1313/ru/tags/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/ru/tags/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="ru"> <html lang="ru">
<head> <head>
<title>http://localhost:1313/ru/tags/</title> <title>http://markinstefan.xyz/ru/tags/</title>
<link rel="canonical" href="http://localhost:1313/ru/tags/"> <link rel="canonical" href="http://markinstefan.xyz/ru/tags/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/ru/tags/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/ru/tags/">
</head> </head>
</html> </html>
Executable → Regular
+10 -10
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Series · Markin Stefan</title> <title>Series · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Series"> <meta name="twitter:title" content="Series">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/series/"> <meta property="og:url" content="http://markinstefan.xyz/series/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Series"> <meta property="og:title" content="Series">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/series/"> <link rel="canonical" href="http://markinstefan.xyz/series/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -137,14 +137,14 @@
<li class="navigation-item"> <li class="navigation-item">
<a href="/ru/series/">🇷🇺</a> <a href="/de/series/">🇩🇪</a>
</li> </li>
<li class="navigation-item"> <li class="navigation-item">
<a href="/de/series/">🇩🇪</a> <a href="/ru/series/">🇷🇺</a>
</li> </li>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/series/">Series</a> <a class="title-link" href="http://markinstefan.xyz/series/">Series</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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>Series on Markin Stefan</title> <title>Series on Markin Stefan</title>
<link>http://localhost:1313/series/</link> <link>http://markinstefan.xyz/series/</link>
<description>Recent content in Series on Markin Stefan</description> <description>Recent content in Series on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>en</language> <language>en</language>
<atom:link href="http://localhost:1313/series/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/series/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/series/</title> <title>http://markinstefan.xyz/series/</title>
<link rel="canonical" href="http://localhost:1313/series/"> <link rel="canonical" href="http://markinstefan.xyz/series/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/series/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/series/">
</head> </head>
</html> </html>
Executable → Regular
+3 -3
View File
@@ -2,17 +2,17 @@
<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"> <sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<sitemap> <sitemap>
<loc>http://localhost:1313/de/sitemap.xml</loc> <loc>http://markinstefan.xyz/de/sitemap.xml</loc>
</sitemap> </sitemap>
<sitemap> <sitemap>
<loc>http://localhost:1313/en/sitemap.xml</loc> <loc>http://markinstefan.xyz/en/sitemap.xml</loc>
</sitemap> </sitemap>
<sitemap> <sitemap>
<loc>http://localhost:1313/ru/sitemap.xml</loc> <loc>http://markinstefan.xyz/ru/sitemap.xml</loc>
</sitemap> </sitemap>
Executable → Regular
+8 -8
View File
@@ -1,7 +1,7 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head><script src="/livereload.js?mindelay=10&amp;v=2&amp;port=1313&amp;path=livereload" data-no-instant defer></script> <head>
<title>Tags · Markin Stefan</title> <title>Tags · Markin Stefan</title>
<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">
@@ -20,7 +20,7 @@
<meta name="twitter:title" content="Tags"> <meta name="twitter:title" content="Tags">
<meta name="twitter:description" content="Markin Stefan&#39;s personal website"> <meta name="twitter:description" content="Markin Stefan&#39;s personal website">
<meta property="og:url" content="http://localhost:1313/tags/"> <meta property="og:url" content="http://markinstefan.xyz/tags/">
<meta property="og:site_name" content="Markin Stefan"> <meta property="og:site_name" content="Markin Stefan">
<meta property="og:title" content="Tags"> <meta property="og:title" content="Tags">
<meta property="og:description" content="Markin Stefan&#39;s personal website"> <meta property="og:description" content="Markin Stefan&#39;s personal website">
@@ -30,7 +30,7 @@
<link rel="canonical" href="http://localhost:1313/tags/"> <link rel="canonical" href="http://markinstefan.xyz/tags/">
<link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin> <link rel="preload" href="/fonts/fa-brands-400.woff2" as="font" type="font/woff2" crossorigin>
@@ -40,7 +40,7 @@
<link rel="stylesheet" href="/css/coder.css" media="screen"> <link rel="stylesheet" href="/css/coder.min.f6b1b35a7b02521b25338f6cf58975f9980a6c12847763fe35a48307758cd1e7.css" integrity="sha256-9rGzWnsCUhslM49s9Yl1&#43;ZgKbBKEd2P&#43;NaSDB3WM0ec=" crossorigin="anonymous" media="screen" />
@@ -50,7 +50,7 @@
<link rel="stylesheet" href="/css/coder-dark.css" media="screen"> <link rel="stylesheet" href="/css/coder-dark.min.ad48f476275974885bdc03d5251e3cdbe1678c54a63ff772376b0ed2adc468dd.css" integrity="sha256-rUj0didZdIhb3APVJR482&#43;FnjFSmP/dyN2sO0q3EaN0=" crossorigin="anonymous" media="screen" />
@@ -100,7 +100,7 @@
<nav class="navigation"> <nav class="navigation">
<section class="container"> <section class="container">
<a class="navigation-title" href="http://localhost:1313/"> <a class="navigation-title" href="http://markinstefan.xyz/">
Markin Stefan Markin Stefan
</a> </a>
@@ -160,7 +160,7 @@
<section class="container list"> <section class="container list">
<header> <header>
<h1 class="title"> <h1 class="title">
<a class="title-link" href="http://localhost:1313/tags/">Tags</a> <a class="title-link" href="http://markinstefan.xyz/tags/">Tags</a>
</h1> </h1>
</header> </header>
@@ -198,7 +198,7 @@
<script src="/js/coder.js"></script> <script src="/js/coder.min.6ae284be93d2d19dad1f02b0039508d9aab3180a12a06dcc71b0b0ef7825a317.js" integrity="sha256-auKEvpPS0Z2tHwKwA5UI2aqzGAoSoG3McbCw73gloxc="></script>
Executable → Regular
+2 -2
View File
@@ -2,10 +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 Markin Stefan</title> <title>Tags on Markin Stefan</title>
<link>http://localhost:1313/tags/</link> <link>http://markinstefan.xyz/tags/</link>
<description>Recent content in Tags on Markin Stefan</description> <description>Recent content in Tags on Markin Stefan</description>
<generator>Hugo</generator> <generator>Hugo</generator>
<language>en</language> <language>en</language>
<atom:link href="http://localhost:1313/tags/index.xml" rel="self" type="application/rss+xml" /> <atom:link href="http://markinstefan.xyz/tags/index.xml" rel="self" type="application/rss+xml" />
</channel> </channel>
</rss> </rss>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/tags/</title> <title>http://markinstefan.xyz/tags/</title>
<link rel="canonical" href="http://localhost:1313/tags/"> <link rel="canonical" href="http://markinstefan.xyz/tags/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/tags/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/tags/">
</head> </head>
</html> </html>
Executable → Regular
+3 -3
View File
@@ -1,9 +1,9 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="en"> <html lang="en">
<head> <head>
<title>http://localhost:1313/marriage/</title> <title>http://markinstefan.xyz/marriage/</title>
<link rel="canonical" href="http://localhost:1313/marriage/"> <link rel="canonical" href="http://markinstefan.xyz/marriage/">
<meta charset="utf-8"> <meta charset="utf-8">
<meta http-equiv="refresh" content="0; url=http://localhost:1313/marriage/"> <meta http-equiv="refresh" content="0; url=http://markinstefan.xyz/marriage/">
</head> </head>
</html> </html>
Binary file not shown.