mirror of
https://github.com/skoelle/28k8-moonweb-org.git
synced 2026-09-17 18:30:24 +00:00
trailing slash fix 3
This commit is contained in:
@@ -4,5 +4,5 @@ const letters = ['t', 'H', 'E', ' ', 't', 'E', 'M', 'P', 'L', 'E', ' ', 'b', 'B'
|
||||
<div class="letter-footer" aria-hidden="true">
|
||||
{letters.map((l) => l === ' ' ? <span class="letter-space">{'\u00A0'}</span> : <span>{l}</span>)}
|
||||
<a href="/" onclick="localStorage.removeItem('hasConnected');">[Q] Disconnect</a>
|
||||
<a href="/bbs/legal-notice">[I] Legal Notice</a>
|
||||
<a href="/bbs/legal-notice/">[I] Legal Notice</a>
|
||||
</div>
|
||||
|
||||
+10
-10
@@ -2,18 +2,18 @@ export type KeymapEntry = { key: string; href: string; label: string };
|
||||
export const GLOBAL_NAV_KEYS: KeymapEntry[] = [
|
||||
{ key: 'B', href: '/bbs/', label: 'Back to Main Menu' },
|
||||
{ key: 'Q', href: 'disconnect', label: 'Disconnect' },
|
||||
{ key: 'I', href: '/bbs/legal-notice', label: 'Legal Notice' },
|
||||
{ key: 'I', href: '/bbs/legal-notice/', label: 'Legal Notice' },
|
||||
];
|
||||
export const MENU_KEYS: KeymapEntry[] = [
|
||||
{ key: 'P', href: '/bbs/pc/phobia', label: 'PHOB!A' },
|
||||
{ key: 'T', href: '/bbs/pc/trancemission', label: 'Tr@nceMISSION' },
|
||||
{ key: 'S', href: '/bbs/pc/skyline', label: 'SkyLINE Productions' },
|
||||
{ key: 'K', href: '/bbs/pc/kosmos-design', label: 'Kosmos Design [KDS]' },
|
||||
{ key: 'D', href: '/bbs/atari/tropic-dreams', label: 'Tropic DREAMs' },
|
||||
{ key: 'E', href: '/bbs/amiga/esprit', label: 'ESPRIT Releases' },
|
||||
{ key: 'M', href: '/bbs/amiga/mods', label: 'MOD Files' },
|
||||
{ key: 'A', href: '/bbs/fido/ansi-art', label: 'BBS ANSI Art' },
|
||||
{ key: 'F', href: '/bbs/fido/nodelist', label: 'Fidonets and Nodelists' },
|
||||
{ key: 'P', href: '/bbs/pc/phobia/', label: 'PHOB!A' },
|
||||
{ key: 'T', href: '/bbs/pc/trancemission/', label: 'Tr@nceMISSION' },
|
||||
{ key: 'S', href: '/bbs/pc/skyline/', label: 'SkyLINE Productions' },
|
||||
{ key: 'K', href: '/bbs/pc/kosmos-design/', label: 'Kosmos Design [KDS]' },
|
||||
{ key: 'D', href: '/bbs/atari/tropic-dreams/', label: 'Tropic DREAMs' },
|
||||
{ key: 'E', href: '/bbs/amiga/esprit/', label: 'ESPRIT Releases' },
|
||||
{ key: 'M', href: '/bbs/amiga/mods/', label: 'MOD Files' },
|
||||
{ key: 'A', href: '/bbs/fido/ansi-art/', label: 'BBS ANSI Art' },
|
||||
{ key: 'F', href: '/bbs/fido/nodelist/', label: 'Fidonets and Nodelists' },
|
||||
];
|
||||
export const ALL_KEYS: KeymapEntry[] = [...GLOBAL_NAV_KEYS, ...MENU_KEYS];
|
||||
export function findKeyEntry(pressedKey: string): KeymapEntry | undefined {
|
||||
|
||||
Reference in New Issue
Block a user