48 lines
1.7 KiB
HTML
48 lines
1.7 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>calculator.127local.net</title>
|
|
<meta name="description" content="Framework-free calculators. All compute happens locally." />
|
|
<link rel="stylesheet" href="/css/styles.css">
|
|
<!-- Preload just the tiny core -->
|
|
<link rel="modulepreload" href="/js/app.js">
|
|
<base href="/">
|
|
</head>
|
|
<body>
|
|
<header class="bar">
|
|
<div class="wrap bar__inner">
|
|
<div class="brand">calculator.127local.net</div>
|
|
<div style="display: flex; align-items: center; gap: 12px;">
|
|
<button id="navToggle" class="nav-toggle" aria-label="Toggle navigation">
|
|
<svg viewBox="0 0 24 24">
|
|
<path d="M3 18h18v-2H3v2zm0-5h18v-2H3v2zm0-7v2h18V6H3z"/>
|
|
</svg>
|
|
</button>
|
|
<button id="themeToggle" class="btn" aria-label="Toggle color scheme">Auto</button>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div class="wrap layout">
|
|
<aside id="nav" class="sidenav"></aside>
|
|
<main id="view" class="content"></main>
|
|
</div>
|
|
|
|
<!-- Mobile navigation overlay -->
|
|
<div id="mobileNavOverlay" class="mobile-nav-overlay"></div>
|
|
|
|
<footer class="wrap foot">
|
|
<div class="footer-content">
|
|
<span>No tracking. No server. Everything runs in your browser.</span>
|
|
<div class="footer-links">
|
|
<a href="mailto:calculator@127local.net" class="contact-link">calculator@127local.net</a>
|
|
<a href="https://code.disobey.net/whilb/calculator.127local.net" target="_blank" rel="noopener noreferrer" class="source-link">Source Code</a>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<script type="module" src="/js/app.js"></script>
|
|
</body>
|
|
</html>
|
|
|