66 lines
3.6 KiB
HTML
66 lines
3.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Quick Brief · Hostkeeper V2</title>
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@300;400;500;600;700&display=swap" rel="stylesheet">
|
|
<link rel="stylesheet" href="/static/css/output.css">
|
|
<link rel="stylesheet" href="/static/css/custom.css">
|
|
<script src="/static/js/htmx.min.js"></script>
|
|
<script src="/static/js/alpine.min.js" defer></script>
|
|
</head>
|
|
<body class="bg-surface text-on-surface antialiased dot-grid min-h-screen">
|
|
<div class="flex min-h-screen">
|
|
{{template "nav" .}}
|
|
<div class="flex-1 flex flex-col overflow-hidden">
|
|
<header class="h-14 border-b border-outline-variant/30 flex items-center px-6 bg-white/70 backdrop-blur-md">
|
|
<h1 class="text-lg font-semibold text-on-surface">{{.Title}}</h1>
|
|
</header>
|
|
<main id="main-content" class="flex-1 overflow-auto p-6">
|
|
<div class="max-w-3xl mx-auto space-y-6">
|
|
|
|
<div class="rounded-xl bg-white border border-outline-variant/30 p-6">
|
|
<h2 class="text-base font-semibold text-on-surface mb-3">Keyboard Shortcuts</h2>
|
|
<div class="space-y-2 text-sm">
|
|
<div class="flex items-center justify-between py-1.5 border-b border-outline-variant/10 last:border-0">
|
|
<span class="text-on-surface-variant">New Host</span>
|
|
<kbd class="px-2 py-0.5 rounded bg-surface-container-low text-xs font-mono text-on-surface">Cmd + N</kbd>
|
|
</div>
|
|
<div class="flex items-center justify-between py-1.5 border-b border-outline-variant/10 last:border-0">
|
|
<span class="text-on-surface-variant">Search</span>
|
|
<kbd class="px-2 py-0.5 rounded bg-surface-container-low text-xs font-mono text-on-surface">Cmd + K</kbd>
|
|
</div>
|
|
<div class="flex items-center justify-between py-1.5 border-b border-outline-variant/10 last:border-0">
|
|
<span class="text-on-surface-variant">Toggle Dark Mode</span>
|
|
<kbd class="px-2 py-0.5 rounded bg-surface-container-low text-xs font-mono text-on-surface">Cmd + D</kbd>
|
|
</div>
|
|
<div class="flex items-center justify-between py-1.5 border-b border-outline-variant/10 last:border-0">
|
|
<span class="text-on-surface-variant">Quick Brief</span>
|
|
<kbd class="px-2 py-0.5 rounded bg-surface-container-low text-xs font-mono text-on-surface">Cmd + B</kbd>
|
|
</div>
|
|
<div class="flex items-center justify-between py-1.5 border-b border-outline-variant/10 last:border-0">
|
|
<span class="text-on-surface-variant">Settings</span>
|
|
<kbd class="px-2 py-0.5 rounded bg-surface-container-low text-xs font-mono text-on-surface">Cmd + ,</kbd>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="rounded-xl bg-white border border-outline-variant/30 p-6">
|
|
<h2 class="text-base font-semibold text-on-surface mb-3">About Hostkeeper V2</h2>
|
|
<div class="space-y-2 text-sm text-on-surface-variant">
|
|
<p>Hostkeeper V2 is a free, open-source Termius alternative for managing SSH/SFTP connections.</p>
|
|
<p>Built with GoFiber v2 + HTMX + Alpine.js + TailwindCSS v4.</p>
|
|
<p>Version: 2.0.0-dev</p>
|
|
<p>License: MIT</p>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</main>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|