Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions documentation/wiki/assets/css/extra.css
Original file line number Diff line number Diff line change
Expand Up @@ -417,6 +417,18 @@
background: rgba(36,120,181,0.04);
}

/* ═══════════════════════════════════════════════
HOMEPAGE WIDTH CONSTRAINT
(nav + toc hidden on index → content goes full-width; cap it)
═══════════════════════════════════════════════ */

.md-content[data-md-component="content"] .md-typeset .hero,
.md-content[data-md-component="content"] .md-typeset .card-grid,
.md-content[data-md-component="content"] .md-typeset .countries,
.md-content[data-md-component="content"] .md-typeset .section-heading {
max-width: 61rem;
}

/* ═══════════════════════════════════════════════
HERO SECTION (homepage)
═══════════════════════════════════════════════ */
Expand Down
20 changes: 20 additions & 0 deletions documentation/wiki/developer-guide/repository-guide.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,27 @@
---
hide:
- toc
---

# SimPaths Repository Guide

A guide to navigating the SimPaths repository structure and codebase.

---

## Table of Contents

1. [Repository Structure](#repository-structure)
2. [Core Components](#core-components)
3. [Key Directories Explained](#key-directories-explained)
4. [Sub-package Detail](#sub-package-detail)
5. [Data Pipeline Reference](#data-pipeline-reference)
6. [Development Workflow](#development-workflow)
7. [Code Navigation Tips](#code-navigation-tips)
8. [Additional Resources](#additional-resources)

---

## Repository Structure

```
Expand Down
Loading