jekyll build from Action 72158d4464

This commit is contained in:
2025-03-16 23:54:47 +00:00
parent f47661a637
commit 0bba8da5c8
9 changed files with 225 additions and 28 deletions

View File

@@ -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>Youll 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>