This commit is contained in:
Alexander 2025-06-09 00:20:26 -04:00
parent dbadcf267e
commit 66af302e2d
115 changed files with 721 additions and 278 deletions

21
templates/main.html Normal file
View file

@ -0,0 +1,21 @@
<html lang="en">
<head>
<meta charset="utf-8">
<title> <!-- set automatically, see soupault.conf --> </title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/css/index.css">
<script>
const class_ = window.devicePixelRatio > 1 ? "font-body-serif" : "font-body-sans";
document.documentElement.className = class_;
</script>
</head>
<body>
<main class="container">
<!-- your page content will be inserted here,
see the default_content_selector option in soupault.conf -->
</main>
</body>
</html>