From 17845f09fa282894c6d3cb1fe1c8da3f2029ad62 Mon Sep 17 00:00:00 2001 From: jae Date: Thu, 2 Apr 2026 23:35:23 +0000 Subject: [PATCH] fix: navbar class mismatch - changed all subpages from navbar to nav-main for proper dropdown hover --- api/data/navigation.json | 121 +++++++++++++----- armoury/debrief.html | 69 ++++++++++ armoury/deployments.html | 69 ++++++++++ armoury/fieldmanuals.html | 69 ++++++++++ armoury/index.html | 81 ++++++++++++ armoury/lab.html | 69 ++++++++++ blog.html | 2 +- comms/backuprelay.html | 69 ++++++++++ comms/encryptedline.html | 69 ++++++++++ comms/index.html | 75 +++++++++++ comms/openchannels.html | 69 ++++++++++ css/section.css | 232 ++++++++++++++++++++++++++++++++++ depot/contraband.html | 69 ++++++++++ depot/exfil.html | 69 ++++++++++ depot/index.html | 81 ++++++++++++ depot/propaganda.html | 69 ++++++++++ depot/recon.html | 69 ++++++++++ hq/briefing.html | 69 ++++++++++ hq/index.html | 81 ++++++++++++ hq/logs.html | 69 ++++++++++ hq/profile.html | 69 ++++++++++ hq/telemetry.html | 69 ++++++++++ post.html | 2 +- transmissions/dispatches.html | 82 ++++++++++++ transmissions/index.html | 75 +++++++++++ transmissions/radar.html | 69 ++++++++++ transmissions/sitrep.html | 69 ++++++++++ 27 files changed, 1970 insertions(+), 35 deletions(-) create mode 100644 armoury/debrief.html create mode 100644 armoury/deployments.html create mode 100644 armoury/fieldmanuals.html create mode 100644 armoury/index.html create mode 100644 armoury/lab.html create mode 100644 comms/backuprelay.html create mode 100644 comms/encryptedline.html create mode 100644 comms/index.html create mode 100644 comms/openchannels.html create mode 100644 css/section.css create mode 100644 depot/contraband.html create mode 100644 depot/exfil.html create mode 100644 depot/index.html create mode 100644 depot/propaganda.html create mode 100644 depot/recon.html create mode 100644 hq/briefing.html create mode 100644 hq/index.html create mode 100644 hq/logs.html create mode 100644 hq/profile.html create mode 100644 hq/telemetry.html create mode 100644 transmissions/dispatches.html create mode 100644 transmissions/index.html create mode 100644 transmissions/radar.html create mode 100644 transmissions/sitrep.html diff --git a/api/data/navigation.json b/api/data/navigation.json index 98358dd..f1f95bb 100644 --- a/api/data/navigation.json +++ b/api/data/navigation.json @@ -1,54 +1,109 @@ [ { - "label": "BASE", "url": "/", "order": 0, + "label": "HQ", + "url": "/", + "order": 0, "children": [ - {"label": "OPERATOR PROFILE", "url": "/#operator"}, - {"label": "DOSSIER", "url": "/#dossier"}, - {"label": "DIAGNOSTICS", "url": "/#diagnostics"}, - {"label": "SITREP", "url": "/#sitrep"}, - {"label": "RADAR", "url": "/#radar"} + { + "label": "OPERATOR PROFILE", + "url": "/hq/profile" + }, + { + "label": "SITE BRIEFING", + "url": "/hq/briefing" + }, + { + "label": "TELEMETRY", + "url": "/hq/telemetry" + }, + { + "label": "MAINTENANCE LOG", + "url": "/hq/logs" + } ] }, { - "label": "TRANSMISSIONS", "url": "/blog", "order": 1, + "label": "TRANSMISSIONS", + "url": "/transmissions", + "order": 1, "children": [ - {"label": "DISPATCHES", "url": "/blog"}, - {"label": "SYNAPTIC LOG", "url": "/blog?tag=thoughts"}, - {"label": "DIRECTIVES", "url": "/blog?tag=tasks"} + { + "label": "DISPATCHES", + "url": "/transmissions/dispatches" + }, + { + "label": "SITREP", + "url": "/transmissions/sitrep" + }, + { + "label": "RADAR", + "url": "/transmissions/radar" + } ] }, { - "label": "ARMOURY", "url": "/blog?tag=dev", "order": 2, + "label": "ARMOURY", + "url": "/armoury", + "order": 2, "children": [ - {"label": "LOADOUT", "url": "/blog?tag=tools"}, - {"label": "FIELD MANUALS", "url": "/blog?tag=guides"}, - {"label": "BLUEPRINTS", "url": "/blog?tag=configs"}, - {"label": "CONTRABAND", "url": "/blog?tag=discoveries"} + { + "label": "DEPLOYMENTS", + "url": "/armoury/deployments" + }, + { + "label": "LAB", + "url": "/armoury/lab" + }, + { + "label": "FIELD MANUALS", + "url": "/armoury/fieldmanuals" + }, + { + "label": "DEBRIEF", + "url": "/armoury/debrief" + } ] }, { - "label": "INTEL", "url": "/blog?tag=intel", "order": 3, + "label": "DEPOT", + "url": "/depot", + "order": 3, "children": [ - {"label": "REDACTED", "url": "/blog?tag=classified"}, - {"label": "CASE FILES", "url": "/blog?tag=truecrime"}, - {"label": "BLACK OPS", "url": "/blog?tag=conspiracy"}, - {"label": "EXHIBITS", "url": "/blog?tag=evidence"}, - {"label": "WIRETAPS", "url": "/blog?tag=intercepts"} + { + "label": "CONTRABAND", + "url": "/depot/contraband" + }, + { + "label": "PROPAGANDA", + "url": "/depot/propaganda" + }, + { + "label": "EXFIL", + "url": "/depot/exfil" + }, + { + "label": "RECON", + "url": "/depot/recon" + } ] }, { - "label": "SAFEHOUSE", "url": "/#links", "order": 4, + "label": "COMMS", + "url": "/comms", + "order": 4, "children": [ - {"label": "ASSET LINKS", "url": "/#links"}, - {"label": "DEAD DROPS", "url": "/#deaddrops"} - ] - }, - { - "label": "COMMS", "url": "/#contact", "order": 5, - "children": [ - {"label": "OPEN CHANNELS", "url": "/#contact"}, - {"label": "ENCRYPTED LINE", "url": "mailto:jaeswift@jaeswift.xyz"}, - {"label": "BACKUP RELAY", "url": "/#backup-relay"} + { + "label": "OPEN CHANNELS", + "url": "/comms/openchannels" + }, + { + "label": "ENCRYPTED LINE", + "url": "/comms/encryptedline" + }, + { + "label": "BACKUP RELAY", + "url": "/comms/backuprelay" + } ] } -] +] \ No newline at end of file diff --git a/armoury/debrief.html b/armoury/debrief.html new file mode 100644 index 0000000..e51d022 --- /dev/null +++ b/armoury/debrief.html @@ -0,0 +1,69 @@ + + + + + + JAESWIFT // DEBRIEF + + + + + + +
+
+ + + + + +
+
ARMOURY // WEAPONS & EQUIPMENT
+

DEBRIEF

+

> Post-operation assessments — reviews of apps, tools, and anything tested.

+
+ +
+
+
+
UNDER CONSTRUCTION
+
This section is being prepared. Content deployment imminent.
+
CLASSIFICATION: PENDING // STATUS: STANDBY
+
+
+ + + + + + + \ No newline at end of file diff --git a/armoury/deployments.html b/armoury/deployments.html new file mode 100644 index 0000000..fee158a --- /dev/null +++ b/armoury/deployments.html @@ -0,0 +1,69 @@ + + + + + + JAESWIFT // DEPLOYMENTS + + + + + + +
+
+ + + + + +
+
ARMOURY // WEAPONS & EQUIPMENT
+

DEPLOYMENTS

+

> Operational systems built by JAESWIFT — live, tested, and in the field.

+
+ +
+
+
+
UNDER CONSTRUCTION
+
This section is being prepared. Content deployment imminent.
+
CLASSIFICATION: PENDING // STATUS: STANDBY
+
+
+ + + + + + + \ No newline at end of file diff --git a/armoury/fieldmanuals.html b/armoury/fieldmanuals.html new file mode 100644 index 0000000..af259b9 --- /dev/null +++ b/armoury/fieldmanuals.html @@ -0,0 +1,69 @@ + + + + + + JAESWIFT // FIELD MANUALS + + + + + + +
+
+ + + + + +
+
ARMOURY // WEAPONS & EQUIPMENT
+

FIELD MANUALS

+

> Step-by-step tactical guides and procedural walkthroughs.

+
+ +
+
+
+
UNDER CONSTRUCTION
+
This section is being prepared. Content deployment imminent.
+
CLASSIFICATION: PENDING // STATUS: STANDBY
+
+
+ + + + + + + \ No newline at end of file diff --git a/armoury/index.html b/armoury/index.html new file mode 100644 index 0000000..1491512 --- /dev/null +++ b/armoury/index.html @@ -0,0 +1,81 @@ + + + + + + JAESWIFT // ARMOURY + + + + + + +
+
+ + + +
+
WEAPONS & EQUIPMENT
+

ARMOURY // DIRECTORY

+

> Purpose-built tools and tactical resources, fabricated on-site.

+
+ +
+ +
+ + + + + + + diff --git a/armoury/lab.html b/armoury/lab.html new file mode 100644 index 0000000..884877c --- /dev/null +++ b/armoury/lab.html @@ -0,0 +1,69 @@ + + + + + + JAESWIFT // LAB + + + + + + +
+
+ + + + + +
+
ARMOURY // WEAPONS & EQUIPMENT
+

LAB

+

> Experimental projects and prototypes — unstable, unfinished, unfiltered.

+
+ +
+
+
+
UNDER CONSTRUCTION
+
This section is being prepared. Content deployment imminent.
+
CLASSIFICATION: PENDING // STATUS: STANDBY
+
+
+ + + + + + + \ No newline at end of file diff --git a/blog.html b/blog.html index 67bd8ec..80e7ded 100644 --- a/blog.html +++ b/blog.html @@ -15,7 +15,7 @@
-