23 lines
1.3 KiB
HTML
23 lines
1.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Peregrine — Job Search Assistant</title>
|
|
<!-- Inline background prevents blank flash before CSS bundle loads -->
|
|
<!-- Matches --color-surface light / dark from theme.css -->
|
|
<style>
|
|
html, body { margin: 0; background: #eaeff8; min-height: 100vh; }
|
|
@media (prefers-color-scheme: dark) { html, body { background: #16202e; } }
|
|
</style>
|
|
<!-- Plausible analytics: cookie-free, GDPR-compliant, self-hosted.
|
|
Skips localhost/127.0.0.1. Reports to hostname + circuitforge.tech rollup. -->
|
|
<script>(function(){if(/localhost|127\.0\.0\.1/.test(location.hostname))return;var s=document.createElement('script');s.defer=true;s.dataset.domain=location.hostname+',circuitforge.tech';s.dataset.api='https://analytics.circuitforge.tech/api/event';s.src='https://analytics.circuitforge.tech/js/script.js';document.head.appendChild(s);})();</script>
|
|
</head>
|
|
<body>
|
|
<!-- Mount target only — App.vue root must NOT use id="app". Gotcha #1. -->
|
|
<div id="app"></div>
|
|
<script type="module" src="/src/main.ts"></script>
|
|
</body>
|
|
</html>
|