All checks were successful
Deploy to GitHub Pages / build_site (push) Successful in 2m3s
30 lines
838 B
HTML
30 lines
838 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<link rel="icon" href="%sveltekit.assets%/svelte.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<script defer src="https://umami.max-richter.dev/script.js" data-website-id="585c442b-0524-4874-8955-f9853b44b17e"></script>
|
|
%sveltekit.head%
|
|
<title>Nodes</title>
|
|
<script>
|
|
var store = localStorage.getItem("node-settings");
|
|
if (store) {
|
|
try {
|
|
var value = JSON.parse(store);
|
|
var themes = ["dark", "light", "catppuccin"];
|
|
if (themes[value.theme]) {
|
|
document.body.classList.add("theme-" + themes[value.theme]);
|
|
}
|
|
} catch (e) { }
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body data-sveltekit-preload-data="hover">
|
|
<div style="display: contents">%sveltekit.body%</div>
|
|
</body>
|
|
|
|
</html>
|