1
0
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rshyn-site/templates/default.html

53 lines
2.4 KiB

2 years ago
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>rshyn.site</title>
2 years ago
<link rel="stylesheet" href="/css/default.css" />
<!-- search for more icons at https://fontawesome.com/search?o=r&m=free -->
<link href="/font-awesome/css/fontawesome.css" rel="stylesheet" />
<link href="/font-awesome/css/brands.css" rel="stylesheet" />
<link href="/font-awesome/css/solid.css" rel="stylesheet" />
2 weeks ago
<!-- favicon from http://www.dailydropcap.com/tag/r -->
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
<link rel="manifest" href="/favicon/site.webmanifest">
<script>
// check for dark mode preference, add functionality to theme switcher
document.addEventListener("DOMContentLoaded", function() {
const btn = document.getElementById("btn-switch");
const bdy = document.querySelector("body");
if (window.matchMedia('(prefers-color-scheme: dark)')) {
bdy.dataset.theme = "dark";
}
btn.addEventListener("click", function () {
bdy.dataset.theme = (bdy.dataset.theme === "light") ? "dark" : "light";
});
});
</script>
2 years ago
</head>
<body data-theme="light">
2 years ago
<header>
<div class="logo">
<a href="/">rshyn.site</a>
</div>
<nav>
<a href="/">Home</a>
<a href="/gallery.html" title="Photo gallery">Photos</a>
<a href="https://github.com/rostyhn" title="Github"><i class="fa-brands fa-github"></i></a>
<a href="https://git.rshyn.site/explore/repos" title="Self-hosted Gitea instance"><i class="fa-brands fa-git-alt"></i></a>
<button id="btn-switch" title="Switch light / dark mode"><i class="fa-solid fa-circle-half-stroke"></i></button>
2 years ago
</nav>
</header>
<main role="main">
<h1>$title$</h1>
$body$
</main>
</body>
</html>