fix: move RECON back to /depot/recon for consistency
This commit is contained in:
parent
fcba1fa016
commit
db2c814c38
4 changed files with 65 additions and 65 deletions
|
|
@ -83,7 +83,7 @@
|
|||
},
|
||||
{
|
||||
"label": "RECON",
|
||||
"url": "/recon"
|
||||
"url": "/depot/recon"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
|||
|
|
@ -2,10 +2,65 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="refresh" content="0;url=/recon">
|
||||
<title>Redirecting to RECON...</title>
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>JAESWIFT // CURATED LISTS</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/section.css">
|
||||
<link rel="stylesheet" href="/css/contraband.css?v=20260404">
|
||||
</head>
|
||||
<body>
|
||||
<p>Redirecting to <a href="/recon">RECON</a>...</p>
|
||||
<body style="background:#0a0a0c;">
|
||||
<div class="scanline-overlay"></div>
|
||||
<div class="grid-bg"></div>
|
||||
|
||||
<nav class="nav-main" id="navbar">
|
||||
<div class="nav-container">
|
||||
<a href="/" class="nav-logo">
|
||||
<span class="logo-bracket">[</span> JAE <span class="logo-bracket">]</span>
|
||||
</a>
|
||||
<button class="nav-toggle" id="navToggle" aria-label="Menu">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="nav-menu" id="navMenu"></ul>
|
||||
<div class="nav-status">
|
||||
<span class="nav-clock" id="navClock"></span>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="breadcrumb">
|
||||
<a href="/">HOME</a>
|
||||
<span class="separator">/</span>
|
||||
<a href="/depot">DEPOT</a>
|
||||
<span class="separator">/</span>
|
||||
<span class="current">RECON</span>
|
||||
</div>
|
||||
|
||||
<section class="section-header" style="padding-top: calc(var(--nav-height) + 1.5rem);">
|
||||
<div class="section-header-label">RECON // CURATED INTELLIGENCE</div>
|
||||
<h1 class="section-header-title">CURATED LISTS</h1>
|
||||
<p class="section-header-sub">> Curated dossiers covering resources across 28 sectors. Select a sector to begin.</p>
|
||||
</section>
|
||||
|
||||
<section class="subpage-content" style="max-width: 1400px; margin: 0 auto; padding: 0 2rem 3rem;">
|
||||
<div id="awesomelistRoot"></div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-container">
|
||||
<div class="footer-left">
|
||||
<span class="footer-logo">[JAE]</span>
|
||||
<span class="footer-copy">© 2026 JAESWIFT.XYZ</span>
|
||||
</div>
|
||||
<div class="footer-right">
|
||||
<span class="footer-signal">SIGNAL ████<span class="signal-flicker">█</span></span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/js/nav.js"></script>
|
||||
<script src="/js/clock.js"></script>
|
||||
<script src="/js/awesomelist.js?v=20260404"></script>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
|
|
@ -340,7 +340,7 @@
|
|||
try {
|
||||
const data = await api('');
|
||||
renderIndex(data);
|
||||
history.pushState({ view: 'index' }, '', '/recon');
|
||||
history.pushState({ view: 'index' }, '', '/depot/recon');
|
||||
} catch (e) {
|
||||
root.innerHTML = `<div class="crt-empty">DATABASE ACCESS DENIED // ${esc(e.message)}</div>`;
|
||||
}
|
||||
|
|
@ -351,7 +351,7 @@
|
|||
try {
|
||||
const data = await api(`/${slug}`);
|
||||
renderSector(data);
|
||||
history.pushState({ view: 'detail', slug: slug }, '', `/recon?sector=${slug}`);
|
||||
history.pushState({ view: 'detail', slug: slug }, '', `/depot/recon?sector=${slug}`);
|
||||
window.scrollTo({ top: 0, behavior: 'smooth' });
|
||||
} catch (e) {
|
||||
root.innerHTML = `<div class="crt-empty">SECTOR NOT FOUND // ${esc(e.message)}</div>`;
|
||||
|
|
|
|||
|
|
@ -2,65 +2,10 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>JAESWIFT // CURATED LISTS</title>
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link href="https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=JetBrains+Mono:wght@300;400;500;700&display=swap" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/css/style.css">
|
||||
<link rel="stylesheet" href="/css/section.css">
|
||||
<link rel="stylesheet" href="/css/contraband.css?v=20260404">
|
||||
<meta http-equiv="refresh" content="0;url=/depot/recon">
|
||||
<title>Redirecting to RECON...</title>
|
||||
</head>
|
||||
<body style="background:#0a0a0c;">
|
||||
<div class="scanline-overlay"></div>
|
||||
<div class="grid-bg"></div>
|
||||
|
||||
<nav class="nav-main" id="navbar">
|
||||
<div class="nav-container">
|
||||
<a href="/" class="nav-logo">
|
||||
<span class="logo-bracket">[</span> JAE <span class="logo-bracket">]</span>
|
||||
</a>
|
||||
<button class="nav-toggle" id="navToggle" aria-label="Menu">
|
||||
<span></span><span></span><span></span>
|
||||
</button>
|
||||
<ul class="nav-menu" id="navMenu"></ul>
|
||||
<div class="nav-status">
|
||||
<span class="nav-clock" id="navClock"></span>
|
||||
</div>
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
<div class="breadcrumb">
|
||||
<a href="/">HOME</a>
|
||||
<span class="separator">/</span>
|
||||
<a href="/depot">DEPOT</a>
|
||||
<span class="separator">/</span>
|
||||
<span class="current">RECON</span>
|
||||
</div>
|
||||
|
||||
<section class="section-header" style="padding-top: calc(var(--nav-height) + 1.5rem);">
|
||||
<div class="section-header-label">RECON // CURATED INTELLIGENCE</div>
|
||||
<h1 class="section-header-title">CURATED LISTS</h1>
|
||||
<p class="section-header-sub">> Curated dossiers covering resources across 28 sectors. Select a sector to begin.</p>
|
||||
</section>
|
||||
|
||||
<section class="subpage-content" style="max-width: 1400px; margin: 0 auto; padding: 0 2rem 3rem;">
|
||||
<div id="awesomelistRoot"></div>
|
||||
</section>
|
||||
|
||||
<footer class="footer">
|
||||
<div class="footer-container">
|
||||
<div class="footer-left">
|
||||
<span class="footer-logo">[JAE]</span>
|
||||
<span class="footer-copy">© 2026 JAESWIFT.XYZ</span>
|
||||
</div>
|
||||
<div class="footer-right">
|
||||
<span class="footer-signal">SIGNAL ████<span class="signal-flicker">█</span></span>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
|
||||
<script src="/js/nav.js"></script>
|
||||
<script src="/js/clock.js"></script>
|
||||
<script src="/js/awesomelist.js?v=20260404"></script>
|
||||
<p>Redirecting to <a href="/depot/recon">RECON</a>...</p>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue