pages/templates/main.html
Alexander 66af302e2d new
2025-06-09 00:20:26 -04:00

21 lines
No EOL
582 B
HTML

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