jekyll build from Action 72158d4464be12139633216de99889d37083b564
This commit is contained in:
parent
f47661a637
commit
0bba8da5c8
33
404.html
33
404.html
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,23 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>404.html</span>
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -114,6 +131,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
@ -8052,11 +8052,26 @@ body {
|
||||
}
|
||||
|
||||
main {
|
||||
height: calc(100vh - 124px);
|
||||
height: calc(100vh - 180px);
|
||||
overflow-y: scroll;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.breadcrumb {
|
||||
font-size: 14px;
|
||||
color: #ffcc00;
|
||||
padding: 5px 10px;
|
||||
}
|
||||
|
||||
.breadcrumb a {
|
||||
color: #ff003c;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.breadcrumb span {
|
||||
color: #888;
|
||||
}
|
||||
|
||||
/*# sourceMappingURL=main.css.map */
|
File diff suppressed because one or more lines are too long
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,23 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>characters</span>
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -95,6 +112,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
2
feed.xml
2
feed.xml
@ -1,4 +1,4 @@
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://phoenixdivision.morlana.space/cpred/feed.xml" rel="self" type="application/atom+xml" /><link href="https://phoenixdivision.morlana.space/cpred/" rel="alternate" type="text/html" /><updated>2025-03-16T23:29:06+00:00</updated><id>https://phoenixdivision.morlana.space/cpred/feed.xml</id><title type="html">ThePhoenixDivision</title><subtitle>We will share our adventures in Cyberpunk Red here.</subtitle><entry><title type="html">Welcome to Jekyll!</title><link href="https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html" rel="alternate" type="text/html" title="Welcome to Jekyll!" /><published>2025-03-16T19:11:55+00:00</published><updated>2025-03-16T19:11:55+00:00</updated><id>https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll</id><content type="html" xml:base="https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html"><![CDATA[<p>You’ll find this post in your <code class="language-plaintext highlighter-rouge">_posts</code> directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run <code class="language-plaintext highlighter-rouge">jekyll serve</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
|
||||
<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://phoenixdivision.morlana.space/cpred/feed.xml" rel="self" type="application/atom+xml" /><link href="https://phoenixdivision.morlana.space/cpred/" rel="alternate" type="text/html" /><updated>2025-03-16T23:54:45+00:00</updated><id>https://phoenixdivision.morlana.space/cpred/feed.xml</id><title type="html">ThePhoenixDivision</title><subtitle>We will share our adventures in Cyberpunk Red here.</subtitle><entry><title type="html">Welcome to Jekyll!</title><link href="https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html" rel="alternate" type="text/html" title="Welcome to Jekyll!" /><published>2025-03-16T19:11:55+00:00</published><updated>2025-03-16T19:11:55+00:00</updated><id>https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll</id><content type="html" xml:base="https://phoenixdivision.morlana.space/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html"><![CDATA[<p>You’ll find this post in your <code class="language-plaintext highlighter-rouge">_posts</code> directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run <code class="language-plaintext highlighter-rouge">jekyll serve</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
|
||||
|
||||
<p>Jekyll requires blog post files to be named according to the following format:</p>
|
||||
|
||||
|
32
index.html
32
index.html
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,16 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -85,7 +95,11 @@
|
||||
<p style="margin-top: 0;"><small>16.03.2025</small></p>
|
||||
<p><p>You’ll find this post in your <code class="language-plaintext highlighter-rouge">_posts</code> directory. Go ahead and edit it and re-build the site to see your changes. You can rebuild the site in many different ways, but the most common way is to run <code class="language-plaintext highlighter-rouge">jekyll serve</code>, which launches a web server and auto-regenerates your site when a file is updated.</p>
|
||||
</p>
|
||||
<a href="/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html">Weiterlesen...</a>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/jekyll/update/2025/03/16/welcome-to-jekyll.html">
|
||||
Weiterlesen...
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
</button>
|
||||
</article>
|
||||
<hr>
|
||||
|
||||
@ -102,6 +116,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,58 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>jekyll</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>update</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>2025</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>03</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>16</span>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>welcome-to-jekyll.html</span>
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -115,6 +167,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,23 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>lifepaths</span>
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -351,6 +368,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
@ -39,14 +39,14 @@
|
||||
</div>
|
||||
<ul class="sidenav" id="mobile-menu">
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/">
|
||||
Home
|
||||
</button>
|
||||
</li>
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/characters/">
|
||||
Charaktere
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -56,7 +56,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/lifepaths/">
|
||||
Lebensweg
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -66,7 +66,7 @@
|
||||
|
||||
|
||||
<li>
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot">
|
||||
<button class="cyber-button bg-red fg-white m-2 vt-bot" data-href="/cpred/roles/">
|
||||
Rollen
|
||||
<span class="glitchtext">$_glitch;</span>
|
||||
<span class="tag"></span>
|
||||
@ -76,6 +76,23 @@
|
||||
|
||||
</ul>
|
||||
</nav>
|
||||
|
||||
<!-- Breadcrumb -->
|
||||
<div class="cyber-att">
|
||||
<a href="/cpred/">Home</a>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
› <span>roles</span>
|
||||
|
||||
|
||||
</div>
|
||||
</header>
|
||||
|
||||
<main>
|
||||
@ -95,6 +112,14 @@
|
||||
var sidenavElems = document.querySelectorAll('.sidenav');
|
||||
var sidenavInstances = M.Sidenav.init(sidenavElems, {});
|
||||
});
|
||||
|
||||
document.querySelectorAll("button").forEach(button => {
|
||||
const href = button.getAttribute("data-href");
|
||||
if (!href) return;
|
||||
button.addEventListener("click", () => {
|
||||
window.location.href = button.getAttribute("data-href");
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
</body>
|
||||
|
Loading…
x
Reference in New Issue
Block a user