Fix four bugs and add logo/branding polish
- docker-compose: add register-user service (profiles: [tools]) with YAML anchor to avoid env duplication - src/index.ts: show localhost instead of 0.0.0.0 in startup message - file-view: render <img> inline for image/* MIME types - file-list: add Copy link button per row (requires baseUrl param) - layout: add hideLogo option; file view page hides the logo - style.css: remove uppercase from .logo (Nanodrop not NANODROP), add button.copy-link styles, add .file-view img styles, widen last td Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
export function layout(title: string, body: string, opts: { authed?: boolean } = {}): string {
|
||||
const { authed = false } = opts;
|
||||
export function layout(title: string, body: string, opts: { authed?: boolean; hideLogo?: boolean } = {}): string {
|
||||
const { authed = false, hideLogo = false } = opts;
|
||||
const nav = authed
|
||||
? `<nav>
|
||||
<a href="/upload">Upload</a>
|
||||
@@ -20,7 +20,7 @@ export function layout(title: string, body: string, opts: { authed?: boolean } =
|
||||
</head>
|
||||
<body>
|
||||
<header>
|
||||
<a href="/" class="logo">Nanodrop</a>
|
||||
${hideLogo ? '' : '<a href="/" class="logo">Nanodrop</a>'}
|
||||
${nav}
|
||||
</header>
|
||||
<main>
|
||||
|
||||
Reference in New Issue
Block a user