First commit
This commit is contained in:
97
hugo/public/comics/alt/2/index.html
Normal file
97
hugo/public/comics/alt/2/index.html
Normal file
@@ -0,0 +1,97 @@
|
||||
<!DOCTYPE html>
|
||||
<html class="no-js" lang="de">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
||||
<title>Alte Comics, Seite 2 :: alphabreed</title>
|
||||
|
||||
<meta name="author" content="Stefan Mühlinghaus">
|
||||
<meta name="viewport" content="initial-scale=1, user-scalable=no">
|
||||
<link rel="icon" type="image/vnd.microsoft.icon" href="/img/favicon.ico">
|
||||
|
||||
<link rel="preload" href="../002.gif" as="image">
|
||||
<link rel="prev" href="../">
|
||||
|
||||
<link rel="next" href="../3/">
|
||||
|
||||
<script>
|
||||
(function() {
|
||||
const comicRegex = /\/comics\/([a-zA-Z0-9]+)\//;
|
||||
let referrerMatches = document.referrer.match(comicRegex);
|
||||
let locationMatches = document.location.href.match(comicRegex);
|
||||
if (!referrerMatches || !referrerMatches[1]
|
||||
|| !locationMatches || !locationMatches[1]
|
||||
|| referrerMatches[1] != locationMatches[1]
|
||||
)
|
||||
return;
|
||||
const numberRegex = /\/comics\/[A-Za-z0-9]+\/(\d+)\//;
|
||||
referrerMatches = document.referrer.match(numberRegex);
|
||||
locationMatches = document.location.href.match(numberRegex);
|
||||
let referrerNum = 0;
|
||||
if (referrerMatches && referrerMatches[1])
|
||||
referrerNum = parseInt(referrerMatches[1], 10);
|
||||
let locationNum = 0;
|
||||
if (locationMatches && locationMatches[1])
|
||||
locationNum = parseInt(locationMatches[1], 10);
|
||||
if (locationNum > referrerNum)
|
||||
document.documentElement.classList.add('forward');
|
||||
else
|
||||
document.documentElement.classList.add('back');
|
||||
})();
|
||||
</script>
|
||||
|
||||
<link rel="preload" href="/css/main.css" as="style">
|
||||
<link rel="stylesheet" href="/css/main.css">
|
||||
<script>(function(H){H.className=H.className.replace(/\bno-js\b/,'js')})(document.documentElement)</script>
|
||||
<script defer src="/js/menu.js"></script>
|
||||
|
||||
</head>
|
||||
<body>
|
||||
|
||||
<header>
|
||||
<a href="/" title="alphabreed Startseite"> <img src="/img/alphabreed.png" alt="alphabreed"></a>
|
||||
<nav>
|
||||
<ul>
|
||||
<li><a href="/pi/">Raspberry Pi</a></li>
|
||||
<li><a href="/gameplays/">Gameplays</a></li>
|
||||
<li><a href="/if/">Interactive Fiction</a></li>
|
||||
<li class="active"><a href="/comics/">Comics</a></li>
|
||||
<li><a href="/bilder/">Bilder</a></li>
|
||||
<li><a href="/impressum/">Impressum</a></li>
|
||||
</ul>
|
||||
</nav>
|
||||
</header>
|
||||
<div id="main">
|
||||
|
||||
<h1>Alte Comics, Seite 2</h1>
|
||||
|
||||
<nav class="comicnav">
|
||||
<a class="first" href="../">Anfang</a>
|
||||
<a class="prev" href="../">Zurück</a>
|
||||
|
||||
<a class="next" href="../3/">Weiter</a>
|
||||
|
||||
|
||||
<a class="last" href="../22/">Ende</a>
|
||||
|
||||
</nav>
|
||||
|
||||
<div id="comicpage">
|
||||
<img src="../002.gif">
|
||||
</div>
|
||||
|
||||
<nav class="comicnav">
|
||||
<a class="first" href="../">Anfang</a>
|
||||
<a class="prev" href="../">Zurück</a>
|
||||
|
||||
<a class="next" href="../3/">Weiter</a>
|
||||
|
||||
|
||||
<a class="last" href="../22/">Ende</a>
|
||||
|
||||
</nav>
|
||||
|
||||
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user