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
5 changes: 3 additions & 2 deletions docs/pages/standards.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,13 @@ Most page content is hardcoded in each page's Astro file:

## Hardware Standards Pages

Currently two hardware standards have dedicated pages:
Currently three hardware standards have dedicated pages:

- **SILO** — `src/pages/standards/silo/index.astro` at `/standards/silo/`
- **WDPC** — `src/pages/standards/wdpc/index.astro` at `/standards/wdpc/`
- **Open19** — `src/pages/standards/open19/index.astro` at `/standards/open19/`

Both appear under the Hardware section in the nav (`src/lib/nav-items.ts`) and in the standards index (`src/pages/standards/index.astro`). Open19 uses WDPC's icon assets as placeholders — dedicated Open19 SVGs should be added to `public/assets/standards/open19/` once available. Articles tagged `"open19"` will automatically appear in the page carousel.
All three appear under the Hardware section in the nav (`src/lib/nav-items.ts`, SILO listed first) and in the standards index (`src/pages/standards/index.astro`, `standardDefs` array). Open19 and SILO both reuse WDPC's icon/illustration assets as placeholders — dedicated SVGs should be added to `public/assets/standards/open19/` and `public/assets/standards/silo/` once available. Articles tagged `"open19"` / `"silo"` will automatically appear in each page's carousel.

## Lifecycle Stages

Expand Down
6 changes: 6 additions & 0 deletions src/lib/nav-items.ts
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@ export const navItems = [
{
title: "Hardware",
links: [
{
href: "/standards/silo/",
label: "SILO",
description:
"Real-time interoperability layer for data centre sustainability" /* iconSrc: pi("silo"), icon: "layers" */,
},
{
href: "/standards/wdpc/",
label: "WDPC",
Expand Down
1 change: 1 addition & 0 deletions src/pages/standards/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ const standardDefs = [
{ slug: "sci-web" },
{ slug: "soft" },
{ slug: "real-time-cloud", urlSlug: "rtc" },
{ slug: "silo" },
{ slug: "wdpc" },
{ slug: "open19" },
{ slug: "see", urlSlug: "sei" },
Expand Down
Loading
Loading