script cleanup
All checks were successful
Jenkins
Ellpeck/Web/pipeline/head This commit looks good

This commit is contained in:
Ell 2023-06-19 10:58:12 +02:00
parent db2ad09a31
commit 2a58a0a1d2
5 changed files with 50 additions and 50 deletions

View file

@ -9,5 +9,8 @@
<span id="quote-text"></span>
<script src="/scripts/quote.js"></script>
<img src="/res/blobheart.png" id="blobheart" alt="A blob emoji holding a heart">
<script>
$('#blobheart').on('click', () => $("#navbar-image").attr("src", "res/heart.jpeg"));
</script>
</div>
</div>

View file

@ -19,18 +19,28 @@
<!-- Navbar content -->
<div class="collapse navbar-collapse" id="navbar-content">
<script>
$(".navbar-collapse a").on("click", () => $(".navbar-collapse").collapse("hide"));
</script>
<div class="navbar-nav mr-auto" id="nav-items">
{% if page.nav %}
{% include {{page.nav}} %}
{% include {{ page.nav }} %}
{% elsif layout.nav %}
{% include {{layout.nav}} %}
{% include {{ layout.nav }} %}
{% endif %}
</div>
<span class="navbar-text">
<div class="custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="dark-mode">
<label class="custom-control-label" for="dark-mode">🌙 Dark Mode</label>
</div>
<span class="navbar-text custom-control custom-checkbox">
<input type="checkbox" class="custom-control-input" id="dark-mode">
<label class="custom-control-label" for="dark-mode">🌙 Dark Mode</label>
<script>
let mode = $("#dark-mode");
mode.prop("checked", dark);
mode.on("click", function () {
localStorage.setItem("dark", $(this).prop("checked"));
location.hash = "";
location.reload();
});
</script>
</span>
</div>
</nav>
</nav>

View file

@ -2,6 +2,14 @@
<html lang="en">
<head>
<script>
// redirect legacy anchors
if (/^#privacy\/?$/.test(location.hash))
location.href = "/privacy";
if (/^#impressum\/?$/.test(location.hash))
location.href = "/impressum";
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
@ -19,16 +27,26 @@
<script src="https://cdn.jsdelivr.net/npm/jquery@3.6.0/dist/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/js/bootstrap.bundle.min.js"></script>
<script src="/scripts/main.js"></script>
<script>
const darkCookie = localStorage.getItem("dark");
const dark = darkCookie === null ? window.matchMedia("(prefers-color-scheme: dark)").matches : darkCookie === "true";
</script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.6.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto&display=swap">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto+Slab&display=swap">
<link rel="stylesheet" href="/style/style.css">
<link rel="stylesheet" href="/style/dark.css">
<link rel="icon" href="/favicon.ico">
</head>
<body data-spy="scroll" data-target="#navbar" data-offset="140">
<script>
if (dark)
$("body").addClass("dark-mode");
</script>
{% include nav/navbar.html %}
<!-- Content -->

View file

@ -1,31 +0,0 @@
const darkCookie = localStorage.getItem("dark");
const dark = darkCookie === null ? window.matchMedia("(prefers-color-scheme: dark)").matches : darkCookie === "true";
if (dark)
$('head').append($("<link/>", {
rel: "stylesheet",
href: "/style/dark.css"
}));
// redirect legacy anchors
if (/^#privacy\/?$/.test(location.hash))
location.href = "/privacy";
if (/^#impressum\/?$/.test(location.hash))
location.href = "/impressum";
$(function () {
$('.navbar-collapse a').on('click', function () {
$('.navbar-collapse').collapse('hide');
});
$('#blobheart').on('click', function () {
$('#navbar-image').attr('src', 'res/heart.jpeg');
});
let mode = $('#dark-mode');
mode.prop('checked', dark);
mode.on('click', function () {
localStorage.setItem("dark", $(this).prop('checked'));
location.hash = "";
location.reload();
});
});

View file

@ -1,34 +1,34 @@
body {
body.dark-mode {
color: #d8d8d8;
background-color: #222222;
}
.jumbotron {
body.dark-mode .jumbotron {
background-color: #404142;
}
.list-display {
body.dark-mode .list-display {
background-color: #404142;
}
.card {
body.dark-mode .card {
background-color: #3d3d3d !important;
}
.text-muted {
body.dark-mode .text-muted {
color: #979797 !important;
}
.footer {
body.dark-mode .footer {
background-color: #343a40;
}
.title-button:link,
.title-button:visited {
body.dark-mode .title-button:link,
body.dark-mode .title-button:visited {
color: white !important;
}
.title-button:hover,
.title-button:active {
body.dark-mode .title-button:hover,
body.dark-mode .title-button:active {
color: rgb(182, 182, 182) !important;
}