-
Notifications
You must be signed in to change notification settings - Fork 0
Move static HTML site to docs root so GitHub Pages serves docs/index.html
#3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
OgeonX-Ai
merged 2 commits into
main
from
codex/implement-features-as-per-codex-instructions-yoaa8z
Jan 3, 2026
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| const pages = [ | ||
| { title: "Overview", href: "pages/overview.html" }, | ||
| { title: "Service Definition", href: "pages/service-definition.html" }, | ||
| { title: "Operating Model", href: "pages/operating-model.html" }, | ||
| { title: "Architecture", href: "pages/architecture.html" }, | ||
| { title: "KPIs", href: "pages/kpis.html" }, | ||
| { title: "Roadmap", href: "pages/roadmap.html" }, | ||
| { title: "Runbooks", href: "pages/runbooks.html" }, | ||
| { title: "Templates", href: "pages/templates.html" }, | ||
| { title: "Hybrid", href: "pages/hybrid.html" } | ||
| ]; | ||
|
|
||
| function buildNav() { | ||
| const nav = document.getElementById("nav-links"); | ||
| pages.forEach((page) => { | ||
| const link = document.createElement("a"); | ||
| link.href = page.href; | ||
| link.textContent = page.title; | ||
| nav.appendChild(link); | ||
| }); | ||
| } | ||
|
|
||
| function setupSearch() { | ||
| const input = document.getElementById("search"); | ||
| if (!input) return; | ||
| input.addEventListener("input", (event) => { | ||
| const query = event.target.value.toLowerCase(); | ||
| const results = pages.filter((page) => | ||
| page.title.toLowerCase().includes(query) | ||
| ); | ||
| const nav = document.getElementById("nav-links"); | ||
| nav.innerHTML = ""; | ||
| results.forEach((page) => { | ||
| const link = document.createElement("a"); | ||
| link.href = page.href; | ||
| link.textContent = page.title; | ||
| nav.appendChild(link); | ||
| }); | ||
| }); | ||
| } | ||
|
|
||
| buildNav(); | ||
| setupSearch(); | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,80 @@ | ||
| :root { | ||
| --bg: #f7f9fb; | ||
| --text: #1f2933; | ||
| --nav: #ffffff; | ||
| --accent: #0b5cab; | ||
| } | ||
|
|
||
| * { | ||
| box-sizing: border-box; | ||
| } | ||
|
|
||
| body { | ||
| margin: 0; | ||
| font-family: Arial, sans-serif; | ||
| color: var(--text); | ||
| background: var(--bg); | ||
| } | ||
|
|
||
| header { | ||
| background: var(--nav); | ||
| padding: 1rem 1.5rem; | ||
| border-bottom: 1px solid #e0e6ed; | ||
| } | ||
|
|
||
| .container { | ||
| display: flex; | ||
| min-height: calc(100vh - 60px); | ||
| } | ||
|
|
||
| nav { | ||
| width: 260px; | ||
| background: var(--nav); | ||
| border-right: 1px solid #e0e6ed; | ||
| padding: 1rem; | ||
| } | ||
|
|
||
| main { | ||
| flex: 1; | ||
| padding: 2rem; | ||
| } | ||
|
|
||
| nav a { | ||
| display: block; | ||
| color: var(--text); | ||
| text-decoration: none; | ||
| padding: 0.4rem 0; | ||
| } | ||
|
|
||
| nav a:hover { | ||
| color: var(--accent); | ||
| } | ||
|
|
||
| .search { | ||
| margin-bottom: 1rem; | ||
| } | ||
|
|
||
| .search input { | ||
| width: 100%; | ||
| padding: 0.5rem; | ||
| border: 1px solid #ccd6e0; | ||
| border-radius: 4px; | ||
| } | ||
|
|
||
| .card { | ||
| background: white; | ||
| padding: 1rem; | ||
| border-radius: 6px; | ||
| border: 1px solid #e0e6ed; | ||
| margin-bottom: 1rem; | ||
| } | ||
|
|
||
| @media (max-width: 900px) { | ||
| .container { | ||
| flex-direction: column; | ||
| } | ||
|
|
||
| nav { | ||
| width: 100%; | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,39 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Cloud Security Service Model</title> | ||
| <link rel="stylesheet" href="assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Cloud Security Service Model</strong> | ||
| <div>Azure + Hybrid operating model</div> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Overview</h1> | ||
| <p> | ||
| This site summarizes the enterprise Cloud Security Service operating model. The canonical source of truth | ||
| is the Markdown documentation in the <code>docs/</code> folder. | ||
| </p> | ||
| <p> | ||
| Start with the executive overview and service definition to understand scope, boundaries, and ownership. | ||
| </p> | ||
| <p> | ||
| <a href="pages/overview.html">Go to overview</a> | ||
| </p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,31 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Architecture</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Architecture</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Architecture</h1> | ||
| <p>Principles and reference architecture for the Cloud Security Service.</p> | ||
| <p><a href="../03-architecture-principles.md">Architecture principles</a></p> | ||
| <p><a href="../04-reference-architecture.md">Reference architecture</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Hybrid</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Hybrid and Azure Local</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Hybrid</h1> | ||
| <p>Guidance for Azure Arc onboarding and Azure Local baseline controls.</p> | ||
| <p><a href="../18-hybrid-azure-local.md">View Markdown doc</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>KPIs</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>KPIs</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Metrics and KPIs</h1> | ||
| <p>Definitions, formulas, targets, and ownership for key metrics.</p> | ||
| <p><a href="../07-metrics-and-kpis.md">View Markdown doc</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Operating Model</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Operating Model</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Operating Model</h1> | ||
| <p>Plan, build, run, and improve with defined cadence and escalation paths.</p> | ||
| <p><a href="../05-operating-model.md">View Markdown doc</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Overview</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Overview</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Executive Overview</h1> | ||
| <p>High-level purpose, assumptions, and framework alignment.</p> | ||
| <p><a href="../00-executive-overview.md">View Markdown doc</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Roadmap</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Roadmap</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Roadmap and Maturity</h1> | ||
| <p>Phased maturity model with a sample 12-month roadmap.</p> | ||
| <p><a href="../08-roadmap-and-maturity.md">View Markdown doc</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| <!DOCTYPE html> | ||
| <html lang="en"> | ||
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <title>Runbooks</title> | ||
| <link rel="stylesheet" href="../assets/style.css" /> | ||
| </head> | ||
| <body> | ||
| <header> | ||
| <strong>Runbooks</strong> | ||
| </header> | ||
| <div class="container"> | ||
| <nav> | ||
| <div class="search"> | ||
| <input id="search" type="text" placeholder="Search pages" /> | ||
| </div> | ||
| <div id="nav-links"></div> | ||
| </nav> | ||
| <main> | ||
| <div class="card"> | ||
| <h1>Runbooks</h1> | ||
| <p>Operational guides for triage, remediation, and onboarding.</p> | ||
| <p><a href="../20-runbooks/README.md">View Markdown runbook index</a></p> | ||
| </div> | ||
| </main> | ||
| </div> | ||
| <script src="../assets/app.js"></script> | ||
| </body> | ||
| </html> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These hrefs are relative to the current page, so when
docs/pages/*.htmlloads../assets/app.js, links likepages/overview.htmlresolve todocs/pages/pages/overview.htmland 404; this breaks the nav and search results on every inner page even thoughdocs/index.htmlstill works. Use absolute paths or adjust the base (e.g., prefix../) for pages loaded fromdocs/pages/.Useful? React with 👍 / 👎.